summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_getcwd.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2005-01-14 04:44:56 +0000
committerobrien <obrien@FreeBSD.org>2005-01-14 04:44:56 +0000
commit98e2482a94352fb526a94972423b2c3dc3ebae6f (patch)
tree7693b8c47d75fd22d8d433e7bb6138b5e9b985a0 /sys/compat/linux/linux_getcwd.c
parent98c3a8a894b937803df272ee68fb791709bc75d5 (diff)
downloadFreeBSD-src-98e2482a94352fb526a94972423b2c3dc3ebae6f.zip
FreeBSD-src-98e2482a94352fb526a94972423b2c3dc3ebae6f.tar.gz
Match the LINUX32's style with existing style
Submitted by: Jung-uk Kim <jkim@niksun.com> Use positive, not negative logic.
Diffstat (limited to 'sys/compat/linux/linux_getcwd.c')
-rw-r--r--sys/compat/linux/linux_getcwd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_getcwd.c b/sys/compat/linux/linux_getcwd.c
index 1bb137e..efc719b 100644
--- a/sys/compat/linux/linux_getcwd.c
+++ b/sys/compat/linux/linux_getcwd.c
@@ -61,12 +61,12 @@ __FBSDID("$FreeBSD$");
#include "opt_compat.h"
-#if !COMPAT_LINUX32
-#include <machine/../linux/linux.h>
-#include <machine/../linux/linux_proto.h>
-#else
+#ifdef COMPAT_LINUX32
#include <machine/../linux32/linux.h>
#include <machine/../linux32/linux32_proto.h>
+#else
+#include <machine/../linux/linux.h>
+#include <machine/../linux/linux_proto.h>
#endif
#include <compat/linux/linux_util.h>
OpenPOWER on IntegriCloud