about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2000-08-05 09:51:19 +0000
committerBart Schaefer <barts@users.sourceforge.net>2000-08-05 09:51:19 +0000
commit1d2948c2da8c19f681daa26da2fc312b5fc697a2 (patch)
treebebaa3be5fd502cb51d9722836687c963e2d8398
parent1859bb2d0a1aa8e3d04d6964d8920f15dca202e8 (diff)
downloadzsh-1d2948c2da8c19f681daa26da2fc312b5fc697a2.tar.gz
zsh-1d2948c2da8c19f681daa26da2fc312b5fc697a2.tar.xz
zsh-1d2948c2da8c19f681daa26da2fc312b5fc697a2.zip
12549: Typo in 12547.
-rw-r--r--ChangeLog4
-rw-r--r--Src/system.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b738342b2..afcda537b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-08-05  Bart Schaefer  <schaefer@zsh.org>
+
+	* unposted (Wayne, 12549): Src/system.h: Missing paren.
+
 2000-08-04  Bart Schaefer  <schaefer@zsh.org>
 
 	* 12547, 12458: configure.in, Src/compat.c, Src/Modules/files.c:
diff --git a/Src/system.h b/Src/system.h
index ba83e005e..1810c525f 100644
--- a/Src/system.h
+++ b/Src/system.h
@@ -207,7 +207,7 @@ struct timezone {
 #ifndef HAVE_PATHCONF
 # define zpathmax(X) ((long)((strlen(X) >= PATH_MAX) ? \
 			     ((errno = ENAMETOOLONG), -1) : \
-			     ((errno = 0), PATH_MAX))
+			     ((errno = 0), PATH_MAX)))
 #endif
 
 /* we should be getting this value from sysconf(_SC_OPEN_MAX) */