From e3fc2cd1b944112781bc65c0ed5e6bb6b7344265 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Fri, 14 Aug 2015 12:06:06 +0200 Subject: [PATCH] linux-dist: Add missing newline in printf calls --- core/linux-dist/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/linux-dist/main.cpp b/core/linux-dist/main.cpp index a65167942..465c669f5 100755 --- a/core/linux-dist/main.cpp +++ b/core/linux-dist/main.cpp @@ -130,7 +130,7 @@ static int evdev_fd = -1; { char name[256] = "Unknown"; - printf("evdev: Trying to open device at '%s'", device); + printf("evdev: Trying to open device at '%s'\n", device); int fd = open(device, O_RDONLY); @@ -257,7 +257,7 @@ static int joystick_fd = -1; // Joystick file descriptor int button_count = 0; char name[128] = "Unknown"; - printf("joystick: Trying to open device at '%s'", device); + printf("joystick: Trying to open device at '%s'\n", device); int fd = open(device, O_RDONLY);