diff options
author | 2019-03-11 20:33:19 +0530 | |
---|---|---|
committer | 2019-03-11 20:33:19 +0530 | |
commit | a94daefcff60d817fbdae749bfc3fc221fec32cd (patch) | |
tree | cf0bbe378200573f23ec48f9211f0e355b82e117 | |
parent | 459b2cceb8a8b9ed36b4395ba5633f5cebda9bc0 (diff) | |
download | nnn-a94daefcff60d817fbdae749bfc3fc221fec32cd.tar.gz |
Inline printmsg
-rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -574,7 +574,7 @@ static char *xitoa(uint val) } /* Messages show up at the bottom */ -static void printmsg(const char *msg) +static inline void printmsg(const char *msg) { mvprintw(xlines - 1, 0, "%s\n", msg); } |