Fix type-o.
authorChris Hanson <org/chris-hanson/cph>
Sun, 9 Feb 1992 03:41:48 +0000 (03:41 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 9 Feb 1992 03:41:48 +0000 (03:41 +0000)
v7/src/microcode/uxfs.c

index 61b69622783f854fe536a0f4eb94d232a0e6c3f1..f73db428820cd4a9f5d9ce483129270fa76316dc 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxfs.c,v 1.6 1992/02/08 14:54:17 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/uxfs.c,v 1.7 1992/02/09 03:41:48 cph Exp $
 
 Copyright (c) 1990-92 Massachusetts Institute of Technology
 
@@ -196,7 +196,7 @@ DEFUN_VOID (UX_initialize_directory_reader)
 }
 
 static unsigned int
-DEFUN (allocate_directory_pointer, (pointer), DIR ** pointer)
+DEFUN (allocate_directory_pointer, (pointer), DIR * pointer)
 {
   if (n_directory_pointers == 0)
     {
@@ -262,7 +262,7 @@ unsigned int
 DEFUN (OS_directory_open, (name), CONST char * name)
 {
   /* Cast `name' to non-const because hp-ux 7.0 declaration incorrect. */
-  DIR ** pointer = (opendir ((char *) name));
+  DIR * pointer = (opendir ((char *) name));
   if (pointer == 0)
     error_system_call (errno, syscall_opendir);
   return (allocate_directory_pointer (pointer));