From a94daefcff60d817fbdae749bfc3fc221fec32cd Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 11 Mar 2019 20:33:19 +0530 Subject: [PATCH] Inline printmsg --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 0446e019..46d14fa7 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -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); }