aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 8b0df44..8e27608 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2420,7 +2420,9 @@ static char *get_output(char *buf, const size_t bytes, const char *file,
static bool getutil(const char *util)
{
- if (!get_output(g_buf, CMD_LEN_MAX, "which", util, NULL, FALSE))
+ char buf[8];
+
+ if (!get_output(buf, 8, "which", util, NULL, FALSE))
return FALSE;
return TRUE;