summary refs log tree commit diff
path: root/.bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-09-15 22:48:33 -0400
committerJune McEnroe <programble@gmail.com>2016-09-15 22:48:33 -0400
commit63d97c10f946b858f5a0311b389594c3d9ece0ac (patch)
tree9deddc980aecc52863321c23ca9d6419a4141d97 /.bin
parentWrite xx usage to stderr (diff)
downloadsrc-63d97c10f946b858f5a0311b389594c3d9ece0ac.tar.gz
src-63d97c10f946b858f5a0311b389594c3d9ece0ac.zip
Use strtoul in xx
Oops.
Diffstat (limited to '.bin')
-rwxr-xr-x.bin/xx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bin/xx.c b/.bin/xx.c
index 734f9d3c..5ee22f6f 100755
--- a/.bin/xx.c
+++ b/.bin/xx.c
@@ -32,11 +32,11 @@ int main(int argc, char **argv) {
         if (opt == 'a')
             flags ^= FLAG_ASCII;
         else if (opt == 'c')
-            cols = (size_t) strtol(optarg, NULL, 10);
+            cols = strtoul(optarg, NULL, 10);
         else if (opt == 'f')
             flags ^= FLAG_OFFSET;
         else if (opt == 'g')
-            group = (size_t) strtol(optarg, NULL, 10);
+            group = strtoul(optarg, NULL, 10);
         else if (opt == 'k')
             flags ^= FLAG_SKIP;
         else {