Xext ChangeLog,3.9,3.10 XSync.c,1.8,1.9

Daniel Stone xlibs-commit@pdx.freedesktop.org
Fri Jan 28 11:01:19 PST 2005


Committed by: daniels

Update of /cvs/xlibs/Xext
In directory gabe:/tmp/cvs-serv3487

Modified Files:
	ChangeLog XSync.c 
Log Message:
Add explicit cast to prevent warning (X.Org HEAD).

Index: ChangeLog
===================================================================
RCS file: /cvs/xlibs/Xext/ChangeLog,v
retrieving revision 3.9
retrieving revision 3.10
diff -u -d -r3.9 -r3.10
--- ChangeLog	23 Nov 2004 01:54:14 -0000	3.9
+++ ChangeLog	28 Jan 2005 19:01:17 -0000	3.10
@@ -1,3 +1,8 @@
+2005-01-29  Daniel Stone  <daniel@freedesktop.org>
+
+	* XSync.c (wire_to_event):
+	Sync from X.Org HEAD -- add explicit cast to prevent warning.
+
 2004-11-22  Carl Worth  <cworth@cworth.org>
 
 	* configure.ac: Remove AC_CONFIG_AUX_DIR (it was in the wrong

Index: XSync.c
===================================================================
RCS file: /cvs/xlibs/Xext/XSync.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- XSync.c	12 Apr 2004 14:15:48 -0000	1.8
+++ XSync.c	28 Jan 2005 19:01:17 -0000	1.9
@@ -155,7 +155,7 @@
 	XSyncIntsToValue(&anl->alarm_value,
 				    ane->alarm_value_lo,
 				    ane->alarm_value_hi);
-	anl->state = ane->state;
+	anl->state = (XSyncAlarmState)ane->state;
 	anl->time = ane->time;
 	return True;
     }



More information about the xlibs-commit mailing list