summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@gnome.org>2018-02-27 22:05:36 +0200
committerCarlos Soriano <csoriano1618@gmail.com>2018-03-01 08:37:50 +0000
commit72df1bb3bbefc48c77b0f532cbf3f5db386c7237 (patch)
treecbe60f3193b733279af4abcdd39f8cdd660fefe0
parent12102bbf02fa1f4135b616a92cd4d1afda8f65a7 (diff)
downloadnautilus-72df1bb3bbefc48c77b0f532cbf3f5db386c7237.tar.gz
properties-window: don’t use undefined macros in #if
Their values default to 0, which may or may not be desirable. In any case, they should explicitly be assigned a value to avoid buggy code. In this case, however, we never define those and have been building things just fine for a while now.
-rw-r--r--src/nautilus-properties-window.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index 62d70058b..8bd335a07 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -54,15 +54,6 @@
#include "nautilus-mime-application-chooser.h"
#include "nautilus-module.h"
-#if HAVE_SYS_VFS_H
-#include <sys/vfs.h>
-#elif HAVE_SYS_MOUNT_H
-#if HAVE_SYS_PARAM_H
-#include <sys/param.h>
-#endif
-#include <sys/mount.h>
-#endif
-
#define PREVIEW_IMAGE_WIDTH 96
#define ROW_PAD 6