diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-21 13:20:42 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-21 13:20:42 -0700 |
commit | 7b523e7c50ba430e3b25438c3ac33eaa86549fc4 (patch) | |
tree | 026cd59e7cb0b20d137268d461772daa24cbf3ef | |
parent | ee8c198a3c6cbc7bb877fdc2378ef6a8e758032e (diff) |
vmon: uninline is_flag mistaken inline
I think I've developed a force of habit typing `static inline` after
the ray tracer in rototiller.
-rw-r--r-- | src/vmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ typedef struct vmon_t { static volatile int got_sigchld; /* return if arg == flag or altflag if provided */ -static inline int is_flag(const char *arg, const char *flag, const char *altflag) +static int is_flag(const char *arg, const char *flag, const char *altflag) { assert(arg); assert(flag); |