From f38c81f0c43446ba6bcc238ea14d02b0ec574488 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 27 Apr 1993 10:04:49 +0000 Subject: [PATCH] Fix typo. --- v7/src/microcode/uxio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.25.1