diff --git a/Error-log b/Error-log index 6922297..7c3c7d1 100644 --- a/Error-log +++ b/Error-log @@ -33,3 +33,6 @@ alist->env didn't work, because it was passing a list, not a vector, to the %INSTALL-ENV procedure. Reported by Mike Sperber 9/19/96. syntactically illegal LET in rw.scm. Reported by jsc 9/23/96. + +a semantically incorrect but benign error in syscalls.1c. +Reported by Lewis Girod 12/12/95. Fixed by bdc 9/26/96 diff --git a/scsh/syscalls1.c b/scsh/syscalls1.c index 5f0839f..c247c7f 100644 --- a/scsh/syscalls1.c +++ b/scsh/syscalls1.c @@ -127,7 +127,7 @@ char const *scm_readlink(const char *path) int retval = readlink(path, linkpath, MAXPATHLEN); return (char const *) - (retval == -1) ? NULL : ( linkpath[retval] = '\0', linkpath ); + ((retval == -1) ? NULL : ( linkpath[retval] = '\0', linkpath )); }