mirror of
https://github.com/jarun/nnn.git
synced 2025-03-14 10:44:05 +00:00
Fix build break
This commit is contained in:
parent
f4f0b9dbba
commit
7cc113ec98
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue