mirror of
https://github.com/RPCS3/libusb.git
synced 2026-07-21 00:16:04 -04:00
Examples: add a missing \n at end of error messages
This commit is contained in:
committed by
Ludovic Rousseau
parent
511ed18228
commit
cf8a313b2c
+2
-2
@@ -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 @@
|
||||
#define LIBUSB_NANO 10733
|
||||
#define LIBUSB_NANO 10734
|
||||
|
||||
Reference in New Issue
Block a user