From 4ca7a660781798fd09455e7818914b810fefdc91 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 17 Dec 2024 03:08:05 -0500 Subject: man page cleanup --- uxd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'uxd.c') diff --git a/uxd.c b/uxd.c index 59c16e9..4125909 100644 --- a/uxd.c +++ b/uxd.c @@ -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; -- cgit v1.2.3