commit | c7fdb4565ad50b71a5e3f070ecf7d11b84bc8c7c | [log] [tgz] |
---|---|---|
author | Mike McCormack <mike@codeweavers.com> | Tue Jul 05 11:02:54 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Jul 05 11:02:54 2005 +0000 |
tree | 3bd5ead051924a74fc7fa612138bc8aaa99b20c3 | |
parent | 89424ce848e73e59bb22ff24232e7bebb93802fb [diff] [blame] |
Fix gcc 4.0 -Wpointer-sign warnings.
diff --git a/dlls/ole32/antimoniker.c b/dlls/ole32/antimoniker.c index 8ec4513..6993b42 100644 --- a/dlls/ole32/antimoniker.c +++ b/dlls/ole32/antimoniker.c
@@ -49,7 +49,7 @@ */ const IROTDataVtbl* lpvtbl2; /* VTable relative to the IROTData interface.*/ - ULONG ref; /* reference counter for this object */ + LONG ref; /* reference counter for this object */ } AntiMonikerImpl;