From: Guillermo J. Rozas Date: Wed, 15 Sep 1993 01:05:28 +0000 (+0000) Subject: Remove spurious comma that was legal but had the completely wrong X-Git-Tag: 20090517-FFI~7843 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=305583b43d4cef72b749693cf60d0aa4f5ee1ff7;p=mit-scheme.git Remove spurious comma that was legal but had the completely wrong effect! --- diff --git a/v7/src/microcode/utils.c b/v7/src/microcode/utils.c index 1dda4e846..942aa4a1f 100644 --- a/v7/src/microcode/utils.c +++ b/v7/src/microcode/utils.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: utils.c,v 9.63 1993/08/23 04:47:15 gjr Exp $ +$Id: utils.c,v 9.64 1993/09/15 01:05:28 gjr Exp $ Copyright (c) 1987-1993 Massachusetts Institute of Technology @@ -386,7 +386,7 @@ void DEFUN (error_system_call, (code, name), int code AND enum syscall_names name) { - error_in_system_call ((OS_error_code_to_syserr, (code)), + error_in_system_call ((OS_error_code_to_syserr (code)), name); /*NOTREACHED*/ }