mirror of
https://github.com/jarun/nnn.git
synced 2025-01-24 01:36:53 +00:00
Fix build break
This commit is contained in:
parent
f4f0b9dbba
commit
7cc113ec98
|
@ -1649,7 +1649,7 @@ static bool parsebmstr()
|
||||||
int i = 0;
|
int i = 0;
|
||||||
char *bms = getenv(env_cfg[NNN_BMS]);
|
char *bms = getenv(env_cfg[NNN_BMS]);
|
||||||
char *nextkey = bms;
|
char *nextkey = bms;
|
||||||
if (!bms | !*bms)
|
if (!bms || !*bms)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
while (*bms && i < BM_MAX) {
|
while (*bms && i < BM_MAX) {
|
||||||
|
|
Loading…
Reference in a new issue