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

@ -441,7 +441,7 @@ void floating_move_to_pointer(Con *con) {
Output *output = get_output_containing(reply->root_x, reply->root_y);
if (output == NULL) {
ELOG("The pointer is not on any output, cannot move the container here.");
ELOG("The pointer is not on any output, cannot move the container here.\n");
return;
}
@ -663,7 +663,7 @@ static void xcb_drag_check_cb(EV_P_ ev_check *w, int revents) {
break;
case XCB_KEY_PRESS:
DLOG("A key was pressed during drag, reverting changes.");
DLOG("A key was pressed during drag, reverting changes.\n");
dragloop->result = DRAG_REVERT;
handle_event(type, event);
break;