diff options
| author | 2017-12-03 17:36:00 +0530 | |
|---|---|---|
| committer | 2017-12-03 17:36:00 +0530 | |
| commit | 092cdf3f82335d8a0444a48a98f7ad70c103fd85 (patch) | |
| tree | efc2cefb83daf19f681ed640d40d0939a5f26736 | |
| parent | d6b80b380f61c5d330780012e88d6cace586e574 (diff) | |
| download | nnn-092cdf3f82335d8a0444a48a98f7ad70c103fd85.tar.gz | |
Fix -Os compilation warnings
| -rw-r--r-- | nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2084,7 +2084,7 @@ browse(char *ipath, char *ifilter) { static char path[PATH_MAX], oldpath[PATH_MAX], newpath[PATH_MAX], lastdir[PATH_MAX], mark[PATH_MAX]; static char fltr[LINE_MAX]; - char *dir, *tmp, *run, *env, *dstdir = NULL; + char *dir, *tmp, *run = NULL, *env = NULL, *dstdir = NULL; struct stat sb; int r, fd, presel; enum action sel = SEL_RUNARG + 1; |