aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2014-08-25 19:24:56 +0300
committerSergey Poznyakoff <gray@gnu.org>2014-08-25 19:24:56 +0300
commit47c39d1874abf853464d59b3a18e40015e952f39 (patch)
tree31dda1ca9fc3983a2d988f6b1a40cb1a1ccc1e32
parent477701c059d73e47aa1bac97e96d801542f2bd8f (diff)
downloadgrecs-47c39d1874abf853464d59b3a18e40015e952f39.tar.gz
grecs-47c39d1874abf853464d59b3a18e40015e952f39.tar.bz2
Minor fix
* src/bind-gram.y (yyerror): arg is char const. * src/dhcpd-gram.y: Likewise. * src/grecs-gram.y: Likewise. * src/meta1-gram.y: Likewise.
-rw-r--r--src/bind-gram.y4
-rw-r--r--src/dhcpd-gram.y4
-rw-r--r--src/grecs-gram.y4
-rw-r--r--src/meta1-gram.y4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/bind-gram.y b/src/bind-gram.y
index df7f9cf..2cca1ed 100644
--- a/src/bind-gram.y
+++ b/src/bind-gram.y
@@ -27,7 +27,7 @@
#include <errno.h>
int yylex(void);
-int yyerror(char *s);
+int yyerror(char const *s);
static struct grecs_node *parse_tree;
extern int yy_flex_debug;
@@ -244,7 +244,7 @@ ctllist : value
%%
int
-yyerror(char *s)
+yyerror(char const *s)
{
grecs_error(&yylloc, 0, "%s", s);
return 0;
diff --git a/src/dhcpd-gram.y b/src/dhcpd-gram.y
index eed9b99..de5fe01 100644
--- a/src/dhcpd-gram.y
+++ b/src/dhcpd-gram.y
@@ -27,7 +27,7 @@
#include <errno.h>
int yylex(void);
-int yyerror(char *s);
+int yyerror(char const *s);
static struct grecs_node *parse_tree;
extern int yy_flex_debug;
@@ -225,7 +225,7 @@ strlist : DHCPD_STRING ',' DHCPD_STRING
%%
int
-yyerror(char *s)
+yyerror(char const *s)
{
grecs_error(&yylloc, 0, "%s", s);
return 0;
diff --git a/src/grecs-gram.y b/src/grecs-gram.y
index dc772e0..9b61487 100644
--- a/src/grecs-gram.y
+++ b/src/grecs-gram.y
@@ -27,7 +27,7 @@
#include <errno.h>
int yylex(void);
-int yyerror(char *s);
+int yyerror(char const *s);
static struct grecs_node *parse_tree;
%}
@@ -243,7 +243,7 @@ opt_sc : /* empty */
%%
int
-yyerror(char *s)
+yyerror(char const *s)
{
grecs_error(&yylloc, 0, "%s", s);
return 0;
diff --git a/src/meta1-gram.y b/src/meta1-gram.y
index d39e46c..d9d94d6 100644
--- a/src/meta1-gram.y
+++ b/src/meta1-gram.y
@@ -24,7 +24,7 @@
#include "grecs-locus.h"
int yylex(void);
-int yyerror(char *s);
+int yyerror(char const *s);
static struct grecs_node *parse_tree;
extern int yy_flex_debug;
@@ -191,7 +191,7 @@ opt_sc : /* empty */
%%
int
-yyerror(char *s)
+yyerror(char const *s)
{
grecs_error(&yylloc, 0, "%s", s);
return 0;

Return to:

Send suggestions and report system problems to the System administrator.