diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:48:13 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:48:13 +0100 |
commit | e39d5d738575c4e784880651db00fdd8cf6c1595 (patch) | |
tree | fccc14540b2cd3c5bc3305ea30b135901daddf4b /src | |
parent | 254310929ecb9c8e5a63f68b8c293c742583f62b (diff) |
Terminate the longopts in grab.c with a null row
Diffstat (limited to 'src')
-rw-r--r-- | src/grab.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -117,6 +117,7 @@ main(int argc, char **argv) {"help", no_argument, 0, 'h'}, {"newline", no_argument, 0, 'n'}, {"zero", no_argument, 0, 'z'}, + {nullptr, 0, 0, 0 }, }; #if GIT_GRAB |