From ef94ba1d524ced45052fd6ae86faa9806d122d51 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 9 Feb 1992 03:41:48 +0000 Subject: [PATCH] Fix type-o. --- v7/src/microcode/uxfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/microcode/uxfs.c b/v7/src/microcode/uxfs.c index 61b696227..f73db4288 100644 --- a/v7/src/microcode/uxfs.c +++ b/v7/src/microcode/uxfs.c @@ -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)); -- 2.25.1