ole32: Superfluous semicolons fix

Andrew Talbot andrew.talbot at talbotville.com
Wed Dec 24 12:13:18 CST 2008


Changelog:
    ole32: Superfluous semicolons fix.

diff --git a/dlls/ole32/clipboard.c b/dlls/ole32/clipboard.c
index 9b290bb..a358654 100644
--- a/dlls/ole32/clipboard.c
+++ b/dlls/ole32/clipboard.c
@@ -80,7 +80,7 @@
 
 #include "compobj_private.h"
 
-#define HANDLE_ERROR(err) { hr = err; TRACE("(HRESULT=%x)\n", (HRESULT)err); goto CLEANUP; }
+#define HANDLE_ERROR(err) do { hr = err; TRACE("(HRESULT=%x)\n", (HRESULT)err); goto CLEANUP; } while (0)
 
 WINE_DEFAULT_DEBUG_CHANNEL(ole);
 



More information about the wine-patches mailing list