From 7fdecc023c61e8a9a0b6d47fc10d3129f334950e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B6r=C3=B6k=20Edvin?= Date: Sat, 24 Oct 2009 11:07:46 +0300 Subject: [PATCH] Fix PASTE macro. --- libclamav/others.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libclamav/others.c b/libclamav/others.c index 8e2c28897..0ef86af28 100644 --- a/libclamav/others.c +++ b/libclamav/others.c @@ -104,7 +104,8 @@ static int lt_init(void) { return 0; } -#define PASTE(a,b) a#b +#define PASTE2(a,b) a#b +#define PASTE(a,b) PASTE2(a,b) static lt_dlhandle lt_dlfind(const char *name, const char *featurename) {