* mount.cc (usage): Correctly report default mode.

This commit is contained in:
Christopher Faylor
2002-10-19 11:41:31 +00:00
parent a85860b5c8
commit 7c51881531
3 changed files with 8 additions and 4 deletions

View File

@@ -944,10 +944,10 @@ character #%d.\n", optarg, (int) (endptr - optarg), endptr);
#endif
break;
case 'p':
pid = strtol (optarg, NULL, 10);
pid = strtoul (optarg, NULL, 10);
break;
case 'S':
flush_period = strtol (optarg, NULL, 10);
flush_period = strtoul (optarg, NULL, 10);
break;
case 't':
hhmmss ^= 1;