From: Richard M. Stallman Date: Sun, 26 Dec 1993 09:06:44 +0000 (+0000) Subject: (XTflush): FIx typo in last change. X-Git-Tag: emacs-19.34~10489 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66c30ea1e43bad76702fca11211f2932aea54419;p=emacs.git (XTflush): FIx typo in last change. --- diff --git a/src/xterm.c b/src/xterm.c index 5df8f37b0d6..c4a4d18829a 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -871,7 +871,7 @@ XTflash (f) { struct timeval wakeup, now; - EMACS_GET_TIME (&wakeup); + EMACS_GET_TIME (wakeup); /* Compute time to wait until, propagating carry from usecs. */ wakeup.tv_usec += 150000; @@ -883,7 +883,7 @@ XTflash (f) { struct timeval timeout; - EMACS_GET_TIME (&timeout); + EMACS_GET_TIME (timeout); /* In effect, timeout = wakeup - timeout. Break if result would be negative. */