fixed signedness of argument in call to XQueryTree().

2005-07-17  Sven Neumann  <sven@gimp.org>

	* tools/shooter.c (find_toplevel_window): fixed signedness of
	argument in call to XQueryTree().
This commit is contained in:
Sven Neumann
2005-07-17 21:06:29 +00:00
committed by Sven Neumann
parent 712ce5c8f9
commit 36d77e367f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-07-17 Sven Neumann <sven@gimp.org>
* tools/shooter.c (find_toplevel_window): fixed signedness of
argument in call to XQueryTree().
2005-07-14 Sven Neumann <sven@gimp.org>
* tools/Makefile.am: only build the doc-shooter if --enable-gtk-doc

View File

@ -28,7 +28,7 @@ find_toplevel_window (Display *display,
Window xid)
{
Window root, parent, *children;
gint nchildren;
guint nchildren;
do
{