Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-10-19 15:41:31 +0400
committerChristopher Faylor <me@cgf.cx>2002-10-19 15:41:31 +0400
commit7c518815315e6e7d8943314e42982a829bb3fb09 (patch)
tree1554e634fd0cb41a2047c39111b930753b26ff7e /winsup/utils/strace.cc
parenta85860b5c868d7c3865e5d912916e51a55014ac7 (diff)
* mount.cc (usage): Correctly report default mode.
Diffstat (limited to 'winsup/utils/strace.cc')
-rw-r--r--winsup/utils/strace.cc4
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;