CVSROOT: /sources/dotgnu-pnet
Module name: treecc
Changes by: Rhys Weatherley <rweather> 07/06/03 06:00:41
Modified files:
. : ChangeLog
tests : test_input.c
Log message:
fix 32bit-ism that gave a warning on amd64.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/treecc/ChangeLog?cvsroot=dotgnu-pnet&r1=1.125&r2=1.126
http://cvs.savannah.gnu.org/viewcvs/treecc/tests/test_input.c?cvsroot=dotgnu-pnet&r1=1.3&r2=1.4
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/treecc/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -b -r1.125 -r1.126
--- ChangeLog 3 Mar 2007 12:16:49 -0000 1.125
+++ ChangeLog 3 Jun 2007 06:00:40 -0000 1.126
@@ -1,4 +1,8 @@
+2007-06-03 Rhys Weatherley <[EMAIL PROTECTED]>
+
+ * tests/test_input.c: fix 32bit-ism that gave a warning on amd64.
+
2007-03-03 Klaus Treichel <[EMAIL PROTECTED]>
* configure.in, NEWS: update version for the 0.3.10 release.
Index: tests/test_input.c
===================================================================
RCS file: /sources/dotgnu-pnet/treecc/tests/test_input.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- tests/test_input.c 15 Dec 2002 13:17:08 -0000 1.3
+++ tests/test_input.c 3 Jun 2007 06:00:41 -0000 1.4
@@ -71,7 +71,7 @@
case TREECC_TOKEN_IDENTIFIER:
{
TreeCCDebug(input.linenum, "identifier (len =
%d): %s",
- strlen(input.text), input.text);
+ (int)strlen(input.text),
input.text);
if(!strcmp(input.text, "parse_literal"))
{
input.parseLiteral = 1;
_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits