mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
d0573bcd08
Signed-off-by: David Spencer <baildon.research@googlemail.com>
21 lines
605 B
Diff
21 lines
605 B
Diff
diff -Naur old/lib/cgraph/scan.l new/lib/cgraph/scan.l
|
|
--- old/lib/cgraph/scan.l 2014-04-13 10:40:25.000000000 -1000
|
|
+++ new/lib/cgraph/scan.l 2014-12-02 08:54:21.285050735 -1000
|
|
@@ -149,7 +149,7 @@
|
|
agxbput(&xb,buf);
|
|
agxbput(&xb,fname);
|
|
agxbput(&xb, " splits into two tokens\n");
|
|
- agerr(AGWARN,agxbuse(&xb));
|
|
+ agerr(AGWARN, "%s", agxbuse(&xb));
|
|
|
|
agxbfree(&xb);
|
|
return 1;
|
|
@@ -225,7 +225,7 @@
|
|
agxbput (&xb, buf);
|
|
agxbput (&xb, yytext);
|
|
agxbput (&xb,"'\n");
|
|
- agerr(AGERR,agxbuse(&xb));
|
|
+ agerr(AGERR, "%s", agxbuse(&xb));
|
|
agxbfree(&xb);
|
|
}
|
|
/* must be here to see flex's macro defns */
|