CVS commit: xsrc/external/mit/libXt/dist/src

2013-06-26 Thread Thomas Klausner
Module Name:xsrc
Committed By:   wiz
Date:   Wed Jun 26 13:54:36 UTC 2013

Modified Files:
xsrc/external/mit/libXt/dist/src: ResConfig.c

Log Message:
Fix unsigned vs. signed char warnings (needed for clang).


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libXt/dist/src/ResConfig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/libXt/dist/src/ResConfig.c
diff -u xsrc/external/mit/libXt/dist/src/ResConfig.c:1.2 xsrc/external/mit/libXt/dist/src/ResConfig.c:1.3
--- xsrc/external/mit/libXt/dist/src/ResConfig.c:1.2	Sun Jun  2 03:07:08 2013
+++ xsrc/external/mit/libXt/dist/src/ResConfig.c	Wed Jun 26 13:54:36 2013
@@ -892,7 +892,7 @@ _XtResourceConfigurationEH (
 	int		actual_format;
 	unsigned long	nitems;
 	unsigned long	leftover;
-	unsigned char	*data = NULL;
+	char		*data = NULL;
 	unsigned long	resource_len;
 	char		*data_ptr;
 	char		*resource;
@@ -952,7 +952,7 @@ _XtResourceConfigurationEH (
 		pd->rcm_data, 0L, 8192L,
 		TRUE, XA_STRING,
 		&actual_type, &actual_format, &nitems, &leftover,
-		&data ) == Success && actual_type == XA_STRING
+		(unsigned char **)&data ) == Success && actual_type == XA_STRING
 			   && actual_format == 8) {
 	/*
 	 *  data format is:



CVS commit: xsrc/external/mit/libXt/dist/src

2013-06-01 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun Jun  2 03:07:08 UTC 2013

Modified Files:
xsrc/external/mit/libXt/dist/src: ResConfig.c

Log Message:
add missing ,


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 xsrc/external/mit/libXt/dist/src/ResConfig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/libXt/dist/src/ResConfig.c
diff -u xsrc/external/mit/libXt/dist/src/ResConfig.c:1.1.1.5 xsrc/external/mit/libXt/dist/src/ResConfig.c:1.2
--- xsrc/external/mit/libXt/dist/src/ResConfig.c:1.1.1.5	Fri May 31 05:19:53 2013
+++ xsrc/external/mit/libXt/dist/src/ResConfig.c	Sat Jun  1 23:07:08 2013
@@ -981,7 +981,7 @@ _XtResourceConfigurationEH (
 resource = XtNewString (data_ptr);
 value = XtNewString (data_value);
 #ifdef DEBUG
-fprintf (stderr, "resource_len=%d\n"
+fprintf (stderr, "resource_len=%d\n",
 	 resource_len);
 fprintf (stderr, "resource = %s\t value = %s\n",
 	 resource, value);



CVS commit: xsrc/external/mit/libXt/dist/src

2009-08-16 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Sun Aug 16 14:16:33 UTC 2009

Modified Files:
xsrc/external/mit/libXt/dist/src: TMparse.c

Log Message:
Fix DEBUG build.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 xsrc/external/mit/libXt/dist/src/TMparse.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/libXt/dist/src/TMparse.c
diff -u xsrc/external/mit/libXt/dist/src/TMparse.c:1.1.1.2 xsrc/external/mit/libXt/dist/src/TMparse.c:1.2
--- xsrc/external/mit/libXt/dist/src/TMparse.c:1.1.1.2	Wed Jul  8 22:00:18 2009
+++ xsrc/external/mit/libXt/dist/src/TMparse.c	Sun Aug 16 10:16:33 2009
@@ -364,8 +364,8 @@
 #ifdef DEBUG
 # ifdef notdef
 {"Timer",	NULLQUARK, _XtTimerEventType,ParseNone,	NULL},
-# endif /* notdef */
 {"EventTimer",	NULLQUARK, _XtEventTimerEventType,ParseNone,NULL},
+# endif /* notdef */
 #endif /* DEBUG */
 
 /* Event Name,	  Quark, Event Type,	Detail Parser, Closure */