fix unitialized value warnings

Signed-off-by: Pierre Habouzit <madcoder@debian.org>
This commit is contained in:
Pierre Habouzit 2008-06-19 23:00:02 +02:00
parent b5a54ed6cf
commit 13cd35f6ba
1 changed files with 3 additions and 3 deletions

View File

@ -451,7 +451,7 @@ mouse_client_move(client_t *c, int snap, bool infobox)
/* current mouse postion */ /* current mouse postion */
int mouse_x, mouse_y; int mouse_x, mouse_y;
/* last mouse position */ /* last mouse position */
int last_x, last_y; int last_x = 0, last_y = 0;
/* current layout */ /* current layout */
layout_t *layout; layout_t *layout;
/* the infobox */ /* the infobox */
@ -716,7 +716,7 @@ mouse_client_resize_tiled(client_t *c)
/* current layout */ /* current layout */
layout_t *layout; layout_t *layout;
int mouse_x, mouse_y; int mouse_x = 0, mouse_y = 0;
size_t cursor = CurResize; size_t cursor = CurResize;
screen = xutil_screen_get(globalconf.connection, c->phys_screen); screen = xutil_screen_get(globalconf.connection, c->phys_screen);
@ -813,7 +813,7 @@ mouse_client_resize_magnified(client_t *c, bool infobox)
/* max. distance from the center */ /* max. distance from the center */
double maxdist; double maxdist;
/* mouse position */ /* mouse position */
int mouse_x, mouse_y; int mouse_x = 0, mouse_y = 0;
/* cursor while grabbing */ /* cursor while grabbing */
size_t cursor = CurResize; size_t cursor = CurResize;
corner_t corner = AutoCorner; corner_t corner = AutoCorner;