From 7cc113ec989906ff7e25f7a1f7d0f3d27efa9430 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 25 Jan 2019 22:15:11 +0530 Subject: [PATCH] Fix build break --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 818d1719..3de43729 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1649,7 +1649,7 @@ static bool parsebmstr() int i = 0; char *bms = getenv(env_cfg[NNN_BMS]); char *nextkey = bms; - if (!bms | !*bms) + if (!bms || !*bms) return TRUE; while (*bms && i < BM_MAX) {