diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-17 03:08:05 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-17 03:08:05 -0500 |
commit | 4ca7a660781798fd09455e7818914b810fefdc91 (patch) | |
tree | 30b02e92d2571a62f56e2eac64e925bf69ca2347 /uxd.c | |
parent | 6b0b93bd30cb4e7a0047954a58d914b989c373a4 (diff) | |
download | uxd-4ca7a660781798fd09455e7818914b810fefdc91.tar.gz |
man page cleanup
Diffstat (limited to 'uxd.c')
-rw-r--r-- | uxd.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -205,6 +205,9 @@ long parse_number(int opt, const char *s) { result = strtol(s, &e, 0); + /* buglet here: 100x is correctly rejected, but 100kx is allowed + (the x is ignored). not gonna worry about it. some people might + even make use of it: 100kb or 100Kb will work. */ switch(*e) { case 0: break; case 'k': result *= 1024L; break; |