aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2017-03-06 08:14:24 +0200
committerSergey Poznyakoff <gray@gnu.org>2017-03-06 08:14:24 +0200
commitb87092f8c251d4d21a42e8ffa77357e02caa9366 (patch)
treefc3858303868b8f2d87c8438d14ea43d7748fed5 /src
parent82d6aca07d5e78c582f9b1db0ca949aa03df936a (diff)
downloadmailfromd-b87092f8c251d4d21a42e8ffa77357e02caa9366.tar.gz
mailfromd-b87092f8c251d4d21a42e8ffa77357e02caa9366.tar.bz2
Fix compiler message
Diffstat (limited to 'src')
-rw-r--r--src/gram.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gram.y b/src/gram.y
index 7bdf5c1c..b818710b 100644
--- a/src/gram.y
+++ b/src/gram.y
@@ -672,7 +672,7 @@ decl : T_PROG state_ident T_DO stmtlist T_DONE
{
if ($1 & SYM_PRECIOUS)
parse_error_locus(&@2.beg,
- _("precious used with func"));
+ _("`precious' used with func"));
if (($1 & (SYM_STATIC|SYM_PUBLIC)) ==
(SYM_STATIC|SYM_PUBLIC))
parse_error_locus(&@2.beg,
@@ -835,7 +835,7 @@ constdecl : qualifiers T_CONST varname expr
if ($1 & SYM_PRECIOUS)
parse_error_locus(&@1.beg,
- _("precious used with const"));
+ _("`precious' used with const"));
if (($1 & (SYM_STATIC|SYM_PUBLIC)) ==
(SYM_STATIC|SYM_PUBLIC))
parse_error_locus(&@1.beg,

Return to:

Send suggestions and report system problems to the System administrator.