From: Thomas Roessler Date: Wed, 6 Feb 2002 19:14:47 +0000 (+0000) Subject: Avoid a warning on some machines. X-Git-Tag: mutt-1-5-1-rel~82 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4c0db71a091a09f189ff0929b4bca1fcad57240;p=mutt Avoid a warning on some machines. --- diff --git a/lib.h b/lib.h index d8d21bc2..7b6b3ac8 100644 --- a/lib.h +++ b/lib.h @@ -70,7 +70,7 @@ * * See K&R 2nd ed, p. 231 for an explanation. */ -# define _MUTT_FORMAT_2(a,b) "%" ## a ## b +# define _MUTT_FORMAT_2(a,b) "%" a b # define _MUTT_FORMAT_1(a, b) _MUTT_FORMAT_2(#a, b) # define MUTT_FORMAT(a) _MUTT_FORMAT_1(a, "s") # define MUTT_FORMAT2(a,b) _MUTT_FORMAT_1(a, b)