ole32: Make stub_manager_int_addref() static.
diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h
index a7c6dfa..43e6e25 100644
--- a/dlls/ole32/compobj_private.h
+++ b/dlls/ole32/compobj_private.h
@@ -203,7 +203,6 @@
/* Stub Manager */
-ULONG stub_manager_int_addref(struct stub_manager *This);
ULONG stub_manager_int_release(struct stub_manager *This);
struct stub_manager *new_stub_manager(APARTMENT *apt, IUnknown *object);
ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs, BOOL tableweak);
diff --git a/dlls/ole32/stubmanager.c b/dlls/ole32/stubmanager.c
index c15e9d3..12813c6 100644
--- a/dlls/ole32/stubmanager.c
+++ b/dlls/ole32/stubmanager.c
@@ -251,7 +251,7 @@
}
/* increments the internal refcount */
-ULONG stub_manager_int_addref(struct stub_manager *This)
+static ULONG stub_manager_int_addref(struct stub_manager *This)
{
ULONG refs;