diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-06-21 22:54:53 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-06-21 22:54:53 +0000 |
commit | 33e7febdbe4ee288139e2e4f3e6b6edf5b9cde7d (patch) | |
tree | 3f5d6005e1d12274b8d15cd2dc516c5bf98119c0 /libavdevice/x11grab.c | |
parent | 843b5fd0fe07f988252d3b711e142785af26a0eb (diff) | |
download | ffmpeg-33e7febdbe4ee288139e2e4f3e6b6edf5b9cde7d.tar.gz |
Remove stray semicolon.
Originally committed as revision 23691 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/x11grab.c')
-rw-r--r-- | libavdevice/x11grab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/x11grab.c b/libavdevice/x11grab.c index ab0a94ca20..0c4e0c461a 100644 --- a/libavdevice/x11grab.c +++ b/libavdevice/x11grab.c @@ -260,7 +260,7 @@ paint_mouse_pointer(XImage *image, struct x11_grab *s) int to_line, to_column; int image_addr, xcim_addr; - xcim = XFixesGetCursorImage(dpy);; + xcim = XFixesGetCursorImage(dpy); x = xcim->x - xcim->xhot; y = xcim->y - xcim->yhot; |