# HG changeset patch # User Karl Heuer # Date 892144037 0 # Node ID 1361a790bca82ff10512e7f5f263ee8f8a962d25 # Parent f23a3354d0ad85b8ce124297ad62e2c2cf74f0b5 (relocate_fd): Avoid `min'/`max' as variable names. diff -r f23a3354d0ad -r 1361a790bca8 src/callproc.c --- a/src/callproc.c Thu Apr 09 17:21:02 1998 +0000 +++ b/src/callproc.c Thu Apr 09 17:47:17 1998 +0000 @@ -1128,13 +1128,13 @@ #endif /* not MSDOS */ } -/* Move the file descriptor FD so that its number is not less than MIN. +/* Move the file descriptor FD so that its number is not less than MINFD. If the file descriptor is moved at all, the original is freed. */ int -relocate_fd (fd, min) - int fd, min; +relocate_fd (fd, minfd) + int fd, minfd; { - if (fd >= min) + if (fd >= minfd) return fd; else { @@ -1151,7 +1151,7 @@ } /* Note that we hold the original FD open while we recurse, to guarantee we'll get a new FD if we need it. */ - new = relocate_fd (new, min); + new = relocate_fd (new, minfd); close (fd); return new; }