1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-04-05 21:16:36 +00:00

Fix build break

This commit is contained in:
Arun Prakash Jana 2019-04-23 19:59:37 +05:30
parent adad3f2fe8
commit e973330c91

View file

@ -1892,8 +1892,9 @@ static char *get_bm_loc(char *buf, int key)
xstrlcpy(buf, home, len + 1);
xstrlcpy(buf + len, bookmark[r].loc + 1, loclen);
return buf;
} else
return realpath(bookmark[r].loc, buf);
}
return realpath(bookmark[r].loc, buf);
}
}