Browse Source

i2cdetect: fix a typo argment -> argument

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
master
Aurelien Jarno 4 years ago
committed by Wolfram Sang
parent
commit
c94a3a21bc
  1. 4
      tools/i2cdetect.c

4
tools/i2cdetect.c

@ -278,7 +278,7 @@ int main(int argc, char *argv[])
tmp = strtol(argv[flags+2], &end, 0);
if (*end) {
fprintf(stderr, "Error: FIRST argment not a "
fprintf(stderr, "Error: FIRST argument not a "
"number!\n");
help();
exit(1);
@ -293,7 +293,7 @@ int main(int argc, char *argv[])
tmp = strtol(argv[flags+3], &end, 0);
if (*end) {
fprintf(stderr, "Error: LAST argment not a "
fprintf(stderr, "Error: LAST argument not a "
"number!\n");
help();
exit(1);

Loading…
Cancel
Save