Examples: add a missing \n at end of error messages

This commit is contained in:
Ludovic Rousseau
2013-06-10 15:27:23 +02:00
committed by Ludovic Rousseau
parent 511ed18228
commit cf8a313b2c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1004,7 +1004,7 @@ int main(int argc, char** argv)
break;
case 'b':
if ((j+1 >= argc) || (argv[j+1][0] == '-') || (argv[j+1][0] == '/')) {
printf(" Option -b requires a file name");
printf(" Option -b requires a file name\n");
return 1;
}
binary_name = argv[++j];
@@ -1012,7 +1012,7 @@ int main(int argc, char** argv)
break;
case 'l':
if ((j+1 >= argc) || (argv[j+1][0] == '-') || (argv[j+1][0] == '/')) {
printf(" Option -l requires an ISO 639-1 language parameter");
printf(" Option -l requires an ISO 639-1 language parameter\n");
return 1;
}
error_lang = argv[++j];
+1 -1
View File
@@ -1 +1 @@
#define LIBUSB_NANO 10733
#define LIBUSB_NANO 10734