From 1eaabedb4c8afc56156acbc4acc9547eb918440f Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Mon, 25 May 2020 23:20:03 +0200 Subject: show-mod: no ending space when showing a single modifier Signed-off-by: Luc Van Oostenryck --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.c b/parse.c index cc5dbd52..cc46f1a6 100644 --- a/parse.c +++ b/parse.c @@ -1151,7 +1151,7 @@ static struct token *attribute_aligned(struct token *token, struct symbol *attr, static void apply_mod(struct position *pos, unsigned long *mods, unsigned long mod) { if (*mods & mod & ~MOD_DUP_OK) - warning(*pos, "duplicate %s", modifier_string(mod)); + warning(*pos, "duplicate %s", modifier_name(mod)); *mods |= mod; } -- cgit 1.2.3-korg