[Redbutton-devel] SF.net SVN: redbutton: [446] redbutton-author/trunk
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-10-18 08:41:16
|
Revision: 446
http://redbutton.svn.sourceforge.net/redbutton/?rev=446&view=rev
Author: skilvington
Date: 2007-10-18 01:41:14 -0700 (Thu, 18 Oct 2007)
Log Message:
-----------
these should be unsigned too
Modified Paths:
--------------
redbutton-author/trunk/ccc.y
redbutton-author/trunk/parser.c.header
Modified: redbutton-author/trunk/ccc.y
===================================================================
--- redbutton-author/trunk/ccc.y 2007-10-18 08:34:54 UTC (rev 445)
+++ redbutton-author/trunk/ccc.y 2007-10-18 08:41:14 UTC (rev 446)
@@ -92,7 +92,7 @@
void
yyerror(const char *str)
{
- fprintf(stderr, "Error: %s at line %d\n", str, yylineno);
+ fprintf(stderr, "Error: %s at line %u\n", str, yylineno);
return;
}
Modified: redbutton-author/trunk/parser.c.header
===================================================================
--- redbutton-author/trunk/parser.c.header 2007-10-18 08:34:54 UTC (rev 445)
+++ redbutton-author/trunk/parser.c.header 2007-10-18 08:41:14 UTC (rev 446)
@@ -34,7 +34,7 @@
void
yyerror(const char *str)
{
- fprintf(stderr, "Error: %s at line %d\n", str, yylineno);
+ fprintf(stderr, "Error: %s at line %u\n", str, yylineno);
yynerrs ++;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|