Fix typo.
authorChris Hanson <org/chris-hanson/cph>
Tue, 27 Apr 1993 10:04:49 +0000 (10:04 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 27 Apr 1993 10:04:49 +0000 (10:04 +0000)
v7/src/microcode/uxio.c

index 5f638a3858c58e7381337f5729e5826ad1b8ea77..123e4099dc108a07ecdd26abe343f6216f1a2fcc 100644 (file)
@@ -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)