ole32: Superfluous semicolons fix.

This commit is contained in:
Andrew Talbot 2008-12-24 18:13:18 +00:00 committed by Alexandre Julliard
parent f9762d6082
commit eceb0cce82
1 changed files with 1 additions and 1 deletions

View File

@ -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);