aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/nnn.c b/nnn.c
index e467401..0b817ef 100644
--- a/nnn.c
+++ b/nnn.c
@@ -1182,10 +1182,12 @@ parsebmstr(char *bms)
static char *
get_bm_loc(char *key, char *buf)
{
+ int r;
+
if (!key || !key[0])
return NULL;
- for (int r = 0; bookmark[r].key && r < BM_MAX; ++r) {
+ for (r = 0; bookmark[r].key && r < BM_MAX; ++r) {
if (xstrcmp(bookmark[r].key, key) == 0) {
if (bookmark[r].loc[0] == '~') {
char *home = getenv("HOME");