Make gcc happy about some possibly uninitialized variables (Thanks badboy)

This warning only showed up with CFLAGS=-O2.
The variables in question could never be uninitialized because
they were definitely set, have a look at the code. But anyways,
less warnings is always a good thing ;-).
next
Michael Stapelberg 2009-09-15 16:58:10 +02:00
parent 30ad7e93e7
commit 775d3a0d91
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_
to_bottom = client->rect.height - event->event_y;
resize_orientation_t orientation = O_VERTICAL;
Container *con = client->container;
int first, second;
int first = 0, second = 0;
LOG("click was %d px to the right, %d px to the left, %d px to top, %d px to bottom\n",
to_right, to_left, to_top, to_bottom);