diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-05-26 16:44:17 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-05-26 16:44:17 +0530 |
commit | 0d05d71a0f9a8a6a593a6a58d63c04f817750d3c (patch) | |
tree | 49f6747e02099cfed6fc6c076032e772a0c655ed | |
parent | 22d8b4dba3d2687213b70ce7b3ec0aec992f5975 (diff) | |
download | nnn-0d05d71a0f9a8a6a593a6a58d63c04f817750d3c.tar.gz |
file: use dereference
-rw-r--r-- | src/nnn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -323,9 +323,9 @@ static char g_tmpfpath[TMP_LEN_MAX] __attribute__ ((aligned)); /* Options to identify file mime */ #ifdef __APPLE__ -#define FILE_OPTS "-bI" +#define FILE_OPTS "-bIL" #else -#define FILE_OPTS "-bi" +#define FILE_OPTS "-biL" #endif /* Macros for utilities */ |