diff options
Diffstat (limited to '')
-rwxr-xr-x | .bin/xx.c | 4 |
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 { |