changeset 5362:d1fa597d923d

(XTflush): FIx typo in last change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 26 Dec 1993 09:06:44 +0000
parents f8be998bdeba
children d37a5b990e49
files src/xterm.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xterm.c	Sun Dec 26 08:43:36 1993 +0000
+++ b/src/xterm.c	Sun Dec 26 09:06:44 1993 +0000
@@ -871,7 +871,7 @@
       {
 	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 @@
 	  {
 	    struct timeval timeout;
 
-	    EMACS_GET_TIME (&timeout);
+	    EMACS_GET_TIME (timeout);
 
 	    /* In effect, timeout = wakeup - timeout.
 	       Break if result would be negative.  */