diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-19 11:41:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-19 11:41:31 +0000 |
commit | 7c518815315e6e7d8943314e42982a829bb3fb09 (patch) | |
tree | 1554e634fd0cb41a2047c39111b930753b26ff7e /winsup/utils/strace.cc | |
parent | a85860b5c868d7c3865e5d912916e51a55014ac7 (diff) | |
download | cygnal-7c518815315e6e7d8943314e42982a829bb3fb09.tar.gz cygnal-7c518815315e6e7d8943314e42982a829bb3fb09.tar.bz2 cygnal-7c518815315e6e7d8943314e42982a829bb3fb09.zip |
* mount.cc (usage): Correctly report default mode.
Diffstat (limited to 'winsup/utils/strace.cc')
-rw-r--r-- | winsup/utils/strace.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/strace.cc b/winsup/utils/strace.cc index 79187cdbc..26ffa4737 100644 --- a/winsup/utils/strace.cc +++ b/winsup/utils/strace.cc @@ -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; |