summaryrefslogtreecommitdiffstats
path: root/compat_fts.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-17 20:45:59 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-17 20:45:59 +0000
commit8d82ccaaedf7599071b86e2805fed023f23e0145 (patch)
treeaaf48bca685886bb6c1278f82ba6b3dfa2b1a477 /compat_fts.c
parentfb668d836663566862ac2e5b4f653282d293983b (diff)
downloadmandoc-8d82ccaaedf7599071b86e2805fed023f23e0145.tar.gz
one forgotten #ifdef -> #if conversion
Diffstat (limited to 'compat_fts.c')
-rw-r--r--compat_fts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/compat_fts.c b/compat_fts.c
index 08d7628d..9d1393c0 100644
--- a/compat_fts.c
+++ b/compat_fts.c
@@ -6,6 +6,7 @@ int dummy;
#else
+/* $Id$ */
/* $OpenBSD: fts.c,v 1.46 2014/05/25 17:47:04 tedu Exp $ */
/*-
@@ -489,7 +490,7 @@ fts_build(FTS *sp)
if (ISDOT(dp->d_name))
continue;
-#ifdef HAVE_DIRENT_NAMLEN
+#if HAVE_DIRENT_NAMLEN
dlen = dp->d_namlen;
#else
dlen = strlen(dp->d_name);