diff options
author | Michael Forney <mforney@mforney.org> | 2019-07-06 15:30:26 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-07-06 15:31:22 -0700 |
commit | 347b7d0aaaf790df992340525cae076d35d3f27e (patch) | |
tree | f193fb62d53f1b66a445be442be50453bfaf6a8f | |
parent | d5e382dd04848349ebf115ac779149af5590ed35 (diff) | |
download | cproc-347b7d0aaaf790df992340525cae076d35d3f27e.tar.xz |
Minor tweaks to arg.h
Make sure EARGF() has type `char *` (rather than `void *`).
Only advance opt_ when there is more left in the argument.
-rw-r--r-- | arg.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,4 +15,4 @@ } #define EARGF(x) \ - (done_ = 1, *++opt_ ? opt_ : argv[1] ? --argc, *++argv : ((x), abort(), (void *)0)) + (done_ = 1, opt_[1] ? ++opt_ : argv[1] ? --argc, *++argv : ((x), abort(), (char *)0)) |