From 07cfe3ea51f1f0a49befa82fe4637a1abb74ae0b Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 13 Oct 2011 12:15:33 +0200 Subject: [PATCH] comctl32/tests: Make impl_from_IStream() static. --- dlls/comctl32/tests/imagelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/tests/imagelist.c b/dlls/comctl32/tests/imagelist.c index 36c9b6587a5..f783ce6f024 100644 --- a/dlls/comctl32/tests/imagelist.c +++ b/dlls/comctl32/tests/imagelist.c @@ -579,7 +579,7 @@ struct my_IStream ULONG iml_data_size; }; -struct my_IStream *impl_from_IStream(IStream *iface) +static struct my_IStream *impl_from_IStream(IStream *iface) { return CONTAINING_RECORD(iface, struct my_IStream, IStream_iface); } -- 2.11.4.GIT