From: Guillermo J. Rozas Date: Wed, 13 Jun 1990 21:15:14 +0000 (+0000) Subject: Add missing pair of parenthesis (how come gcc did not catch it?). X-Git-Tag: 20090517-FFI~11391 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d774c2f6dcf7178668d18d28719aab7bdbd2749d;p=mit-scheme.git Add missing pair of parenthesis (how come gcc did not catch it?). --- diff --git a/v7/src/microcode/gpio.c b/v7/src/microcode/gpio.c index 1776ce0fd..56214beb0 100644 --- a/v7/src/microcode/gpio.c +++ b/v7/src/microcode/gpio.c @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/gpio.c,v 1.2 1990/06/13 20:49:58 jinx Exp $ */ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/gpio.c,v 1.3 1990/06/13 21:15:14 jinx Exp $ */ /* Scheme primitives for GPIO */ @@ -141,7 +141,7 @@ DEFINE_PRIMITIVE ("GPIO-OPEN", Prim_gpio_open, 1, 1, 0) in all the other primitives. */ close (gpio_channel); - error_external_return; + error_external_return(); } io_lock (gpio_channel);