Module: wine Branch: master Commit: eceb0cce8277def5911c4a75c9e345a0c7022c7f URL: http://source.winehq.org/git/wine.git/?a=commit;h=eceb0cce8277def5911c4a75c9... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Wed Dec 24 18:13:18 2008 +0000 ole32: Superfluous semicolons fix. --- dlls/ole32/clipboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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);