Ticket #3053: src/filemanager/filegui.c: fix preprocessor condition.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Marco Atzeri 2013-08-04 12:52:21 +04:00 committed by Andrew Borodin
parent 69de5b830f
commit 87a5f11452

View File

@ -284,8 +284,8 @@ statvfs_works (void)
if (statvfs_works_cache < 0) if (statvfs_works_cache < 0)
statvfs_works_cache = (uname (&name) == 0 && 0 <= str_verscmp (name.release, "2.6.36")); statvfs_works_cache = (uname (&name) == 0 && 0 <= str_verscmp (name.release, "2.6.36"));
return statvfs_works_cache; return statvfs_works_cache;
}
#endif #endif
}
#endif #endif
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */