diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2025-09-13 02:03:35 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2025-09-13 02:03:35 +0300 |
commit | 9e7132fff6d905e43955803892046e0a0b1dd8fb (patch) | |
tree | e553056995d65c62dfa5ff7b5ade2b0ca08b3156 /cli | |
parent | 312c20f2c868d8fdc014108152cc7782ae6ec90b (diff) | |
download | c-wares-cli.tar.gz c-wares-cli.zip |
cli.h: fix cli_opt_ulong value typecli
Weak typing be like...
Diffstat (limited to 'cli')
-rw-r--r-- | cli/cli.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ int cli_opt_long_set(struct cli_opt *self, const char *val) struct cli_opt_ulong { struct cli_opt opt; - long value; + unsigned long value; }; #define CLI_OPT_ULONG(name, sh, ln, dsc) \ |