summaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-03-26 22:49:20 +0000
committerOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-03-26 22:49:20 +0000
commit1de0ba098fe281344569e554272a6fb6a0a9369c (patch)
treeaaae81ec8929fd036fa95ae8901352ac716a4966 /src/misc.c
parentf4320b6356282ba10e64030a2d6193ef1f4aaf51 (diff)
downloadxfwm4-1de0ba098fe281344569e554272a6fb6a0a9369c.tar.gz
Various bug and warning fixes.
(Old svn revision: 20586)
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/misc.c b/src/misc.c
index 08b9f787e..2407f866d 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -46,7 +46,8 @@ void
getMouseXY (ScreenInfo *screen_info, Window w, int *x2, int *y2)
{
Window w1, w2;
- gint x1, y1, m;
+ int x1, y1;
+ unsigned int m;
TRACE ("entering getMouseXY");
@@ -57,7 +58,8 @@ Window
getMouseWindow (ScreenInfo *screen_info, Window w)
{
Window w1, w2;
- int x1, y1, x2, y2, m;
+ int x1, y1, x2, y2;
+ unsigned int m;
TRACE ("entering getMouseWindow");