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 ;-).
This commit is contained in:
parent
30ad7e93e7
commit
775d3a0d91
|
@ -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;
|
to_bottom = client->rect.height - event->event_y;
|
||||||
resize_orientation_t orientation = O_VERTICAL;
|
resize_orientation_t orientation = O_VERTICAL;
|
||||||
Container *con = client->container;
|
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",
|
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);
|
to_right, to_left, to_top, to_bottom);
|
||||||
|
|
Loading…
Reference in New Issue