From: Guillermo J. Rozas Date: Sun, 22 Jul 1990 06:40:36 +0000 (+0000) Subject: Fix unitialized variable bug in xw_wait_for_window_event. X-Git-Tag: 20090517-FFI~11307 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=043399b54ce35238c2b55446260a7f1a8d076023;p=mit-scheme.git Fix unitialized variable bug in xw_wait_for_window_event. Typo in the previous check-in. --- diff --git a/v7/src/microcode/x11base.c b/v7/src/microcode/x11base.c index 14d48334e..02c0460fd 100644 --- a/v7/src/microcode/x11base.c +++ b/v7/src/microcode/x11base.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/x11base.c,v 1.9 1990/07/22 06:35:42 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/x11base.c,v 1.10 1990/07/22 06:40:36 jinx Exp $ Copyright (c) 1989, 1990 Massachusetts Institute of Technology @@ -599,7 +599,7 @@ xw_wait_for_window_event (xw) XEvent event_s; XEvent * event; - event &event_s; + event = &event_s; while (1) {