1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +02:00

12549: Typo in 12547.

This commit is contained in:
Bart Schaefer 2000-08-05 09:51:19 +00:00
parent 1859bb2d0a
commit 1d2948c2da
2 changed files with 5 additions and 1 deletions

@ -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:

@ -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) */