linux-dist: Add missing newline in printf calls

This commit is contained in:
Jan Holthuis 2015-08-14 12:06:06 +02:00
parent a49c83b21c
commit e3fc2cd1b9
1 changed files with 2 additions and 2 deletions

View File

@ -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);