diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 19:20:48 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 19:20:48 +0100 |
commit | 6c314893a2a1ebf66fcc9ed3cdec0b4cee296e2a (patch) | |
tree | d5528c8d0a92ef5d32b43a62f709d814f01b3413 | |
parent | 914edbb3b6549b30d5c05398626ad49362ca18ab (diff) |
Don’t be a dummy
-rw-r--r-- | cbs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ #define cmdclr(c) \ do { \ (c)->len = 0; \ - (c)->argv = NULL; \ + *(c)->argv = NULL; \ } while (0) /* Struct representing a CLI command that various functions act on. You will |