summaryrefslogtreecommitdiff
path: root/src/symtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/symtab.c')
-rw-r--r--src/symtab.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/symtab.c b/src/symtab.c
index bfd3ced1..35b61dea 100644
--- a/src/symtab.c
+++ b/src/symtab.c
@@ -409,11 +409,11 @@ void
symbol_make_alias (symbol *sym, symbol *str, location loc)
{
if (str->alias)
- warn_at (loc, _("symbol `%s' used more than once as a literal string"),
- str->tag);
+ warn_at (loc, _("symbol '%s' used more than once as a literal string"),
+ str->tag);
else if (sym->alias)
- warn_at (loc, _("symbol `%s' given more than one literal string"),
- sym->tag);
+ warn_at (loc, _("symbol '%s' given more than one literal string"),
+ sym->tag);
else
{
str->class = token_sym;