initialize most to NULL, fixes warning

next
Michael Stapelberg 2011-08-07 20:45:06 +02:00
parent b0f0a045bc
commit 6fb5d6e313
1 changed files with 1 additions and 1 deletions

View File

@ -781,7 +781,7 @@ Con *con_descend_tiling_focused(Con *con) {
*
*/
Con *con_descend_direction(Con *con, direction_t direction) {
Con *most;
Con *most = NULL;
DLOG("con_descend_direction(%p, %d)\n", con, direction);
if (direction == D_LEFT || direction == D_RIGHT) {
if (con->orientation == HORIZ) {