Commit eceb0cce authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

ole32: Superfluous semicolons fix.

parent f9762d60
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment