From 6ab4643088b306e212dc45284a3cd7b27ecb47e3 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sun, 3 May 2015 20:20:14 +0300 Subject: [PATCH] src/filemanager/filegui.c: fix use of STAT_STATVFS and STAT_STATVFS64. Signed-off-by: Andrew Borodin --- src/filemanager/filegui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filemanager/filegui.c b/src/filemanager/filegui.c index 220d07bcc..37e04e02a 100644 --- a/src/filemanager/filegui.c +++ b/src/filemanager/filegui.c @@ -269,7 +269,7 @@ struct preceding entries in /proc/mounts; that makes df hang if even one of the corresponding file systems is hard-mounted but not available. */ -#if USE_STATVFS && ! (! STAT_STATVFS && STAT_STATVFS64) +#if USE_STATVFS && ! (! defined STAT_STATVFS && defined STAT_STATVFS64) static int statvfs_works (void) { -- 2.11.4.GIT