blob: b9d2d296a032c10334e81ef9bec0e9e3ff8cef94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/gt-bison.y.orig 2006-09-11 01:32:12 UTC
+++ src/gt-bison.y
@@ -18,7 +18,7 @@ Edge *e;
extern char *yy_gt_text;
-int yy_gt_error (char *s);
+int yy_gt_error (const char *s);
int yy_gt_lex (void);
%}
@@ -132,7 +132,7 @@ edge_property:
%%
-int yy_gt_error (char *s)
+int yy_gt_error (const char *s)
{
fprintf (stderr, "gt-parse: %s in line %i, at symbol \"%s\"\n",
s, gt_lineno, yy_gt_text);
|