From 3ca86eafbe899a448799832f8ad65d15a01f6e57 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 14 May 2019 23:42:22 +0530 Subject: [PATCH] Get device info from path --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index d7dd57de..51d17940 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -2659,7 +2659,7 @@ static int dentfill(char *path, struct entry **dents) num_files = 0; dir_blocks = 0; - if (fstatat(fd, ".", &sb_path, 0) == -1) { + if (fstatat(fd, path, &sb_path, 0) == -1) { closedir(dirp); printwarn(NULL); return 0;