Added missing newlines in log statements.

This commit is contained in:
Ingo Bürk
2015-06-30 20:48:35 +02:00
parent 8df7e4ecb9
commit 94a09b3cac
12 changed files with 22 additions and 22 deletions

View File

@ -729,12 +729,12 @@ static bool _con_move_to_con(Con *con, Con *target, bool behind_focused, bool fi
/* Prevent moving if this would violate the fullscreen focus restrictions. */
Con *target_ws = con_get_workspace(target);
if (!con_fullscreen_permits_focusing(target_ws)) {
LOG("Cannot move out of a fullscreen container");
LOG("Cannot move out of a fullscreen container.\n");
return false;
}
if (con_is_floating(con)) {
DLOG("Using FLOATINGCON instead\n");
DLOG("Container is floating, using parent instead.\n");
con = con->parent;
}