aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-12-30 12:30:52 +0000
committerMike Frysinger <vapier@gentoo.org>2008-12-30 12:30:52 +0000
commitd648400001a8921c20c15da8d2016c65762b1e72 (patch)
tree40e4dd64bee2f6f7c4233a2528798cf9c99c75b3 /porting.h
parentuse xmalloc() rather than malloc() (diff)
downloadpax-utils-d648400001a8921c20c15da8d2016c65762b1e72.tar.gz
pax-utils-d648400001a8921c20c15da8d2016c65762b1e72.tar.bz2
pax-utils-d648400001a8921c20c15da8d2016c65762b1e72.zip
tweak style slightly to make source tests happy
Diffstat (limited to 'porting.h')
-rw-r--r--porting.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/porting.h b/porting.h
index 23ed770..a516c5e 100644
--- a/porting.h
+++ b/porting.h
@@ -1,7 +1,7 @@
/*
* Copyright 2005-2007 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v 1.35 2008/11/16 20:54:45 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/porting.h,v 1.36 2008/12/30 12:30:52 vapier Exp $
*
* Copyright 2005-2007 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2007 Mike Frysinger - <vapier@gentoo.org>
@@ -108,9 +108,9 @@
# endif
#endif
-#if !defined(_POSIX_PATH_MAX) && !defined(PATH_MAX)
+#if !defined(_POSIX_PATH_MAX) && !defined(PATH_MAX) /* __PAX_UTILS_PATH_MAX */
# define __PAX_UTILS_PATH_MAX 8192
-#elif _POSIX_PATH_MAX > PATH_MAX
+#elif _POSIX_PATH_MAX > PATH_MAX /* __PAX_UTILS_PATH_MAX */
# define __PAX_UTILS_PATH_MAX _POSIX_PATH_MAX
#else
# define __PAX_UTILS_PATH_MAX PATH_MAX