diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-11 11:56:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-15 14:02:59 -0400 |
commit | c35278e217fb45e1001845c33ffd1c947599b40c (patch) | |
tree | 85e1f2e1030a3bf1ce41fa2aa238e513482f8b45 /src/command.c | |
parent | 039d3f05239e48f0ddfae5fb14cde00d817b9ed2 (diff) | |
download | kutter-c35278e217fb45e1001845c33ffd1c947599b40c.tar.gz kutter-c35278e217fb45e1001845c33ffd1c947599b40c.tar.xz kutter-c35278e217fb45e1001845c33ffd1c947599b40c.zip |
build: Avoid using noinline in common code
It's not necessary to use noinline for parsef() and stop_steppers().
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index 6ddd7eb7..915bbd42 100644 --- a/src/command.c +++ b/src/command.c @@ -67,7 +67,7 @@ parse_int(char **pp) } // Parse an incoming command into 'args' -static noinline char * +static char * parsef(char *p, char *maxend, const struct command_parser *cp, uint32_t *args) { if (sched_is_shutdown() && !(READP(cp->flags) & HF_IN_SHUTDOWN)) { |