From: Chris Hanson Date: Tue, 27 Apr 1993 10:04:49 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~8373 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f38c81f0c43446ba6bcc238ea14d02b0ec574488;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/microcode/uxio.c b/v7/src/microcode/uxio.c index 5f638a385..123e4099d 100644 --- a/v7/src/microcode/uxio.c +++ b/v7/src/microcode/uxio.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: uxio.c,v 1.28 1993/04/27 10:03:56 cph Exp $ +$Id: uxio.c,v 1.29 1993/04/27 10:04:49 cph Exp $ Copyright (c) 1990-93 Massachusetts Institute of Technology @@ -544,12 +544,12 @@ DEFUN (UX_select_input, (fd, blockp), int fd AND int blockp) FD_SET (fd, (&readable)); { enum select_input s = - (UX_select_registry_test ((&readable), blockp, (&fds), (&nfds))); + (UX_select_registry_test ((&readable), blockp, fds, (&nfds))); if (s != select_input_argument) return (s); } { - unsigned int * scan = (&fds[0]); + unsigned int * scan = fds; unsigned int * end = (scan + nfds); while (scan < end) if ((*scan++) == fd)