From 25d7fa77204140f8cb8323b200b45a0fefd9edad Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Thu, 29 Nov 2001 08:45:17 +0000 Subject: Fix (weird) compilation problem. CVS patchset: 1134 CVS date: 2001/11/29 08:45:17 --- src/libw32dll/wine/win32.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/libw32dll/wine/win32.c b/src/libw32dll/wine/win32.c index 94d281827..0d1793087 100644 --- a/src/libw32dll/wine/win32.c +++ b/src/libw32dll/wine/win32.c @@ -2865,8 +2865,7 @@ struct libs struct exports* exps; }; -#define FF(X,Y) \ -{#X, Y, (void*)exp##X}, +#define FF(X,Y) {#X, Y, (void*)exp##X}, struct exports exp_kernel32[]={ FF(IsBadWritePtr, 357) @@ -3075,8 +3074,7 @@ FF(StringFromGUID2, -1) FF(InitCommonControls, 17) }; -#define LL(X) \ -{#X".dll", sizeof(exp_##X)/sizeof(struct exports), exp_##X}, +#define LL(X) {#X".dll", sizeof(exp_##X)/sizeof(struct exports), exp_##X}, struct libs libraries[]={ LL(kernel32) -- cgit v1.2.3