Skip to content

Commit

Permalink
glw: Fix use of initialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
andoma committed Mar 18, 2011
1 parent 3b17e2e commit 10fa0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/glw/glw_x11.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ build_blank_cursor(glw_x11_t *gx11)
static void
hide_cursor(glw_x11_t *gx11)
{
glw_pointer_event_t gpe;
glw_pointer_event_t gpe = {0};

if(gx11->cursor_hidden)
return;
Expand Down

0 comments on commit 10fa0f5

Please sign in to comment.