summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-11-26 18:07:43 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2014-11-20 16:52:21 +0100
commit5ac6b73f162402724d951b749dc30a988af37eb5 (patch)
treea80d6af84d8d4cda070a0e9dbd996a6454e34d16
parent0cb17bd49ce07e4cdc19b88ae7cda4045fcc1362 (diff)
Fix 'Inalid' typo in error messages
When the server is started with invalid arguments, 'Invalid' is typo'ed.
-rw-r--r--usbredirserver/usbredirserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usbredirserver/usbredirserver.c b/usbredirserver/usbredirserver.c
index d2765c6..25682e8 100644
--- a/usbredirserver/usbredirserver.c
+++ b/usbredirserver/usbredirserver.c
@@ -206,14 +206,14 @@ int main(int argc, char *argv[])
case 'p':
port = strtol(optarg, &endptr, 10);
if (*endptr != '\0') {
- fprintf(stderr, "Inalid value for --port: '%s'\n", optarg);
+ fprintf(stderr, "Invalid value for --port: '%s'\n", optarg);
usage(1, argv[0]);
}
break;
case 'v':
verbose = strtol(optarg, &endptr, 10);
if (*endptr != '\0') {
- fprintf(stderr, "Inalid value for --verbose: '%s'\n", optarg);
+ fprintf(stderr, "Invalid value for --verbose: '%s'\n", optarg);
usage(1, argv[0]);
}
break;