diff options
| author | 2019-01-25 22:15:11 +0530 | |
|---|---|---|
| committer | 2019-01-25 22:16:05 +0530 | |
| commit | 7cc113ec989906ff7e25f7a1f7d0f3d27efa9430 (patch) | |
| tree | bcfcc070691c8f70b360af33cec27e0536dbfa11 /src | |
| parent | f4f0b9dbbac3706c7129f8c70e838dbe7f3b895b (diff) | |
| download | nnn-7cc113ec989906ff7e25f7a1f7d0f3d27efa9430.tar.gz | |
Fix build break
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 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) { |