Module: wine Branch: master Commit: 07cfe3ea51f1f0a49befa82fe4637a1abb74ae0b URL: http://source.winehq.org/git/wine.git/?a=commit;h=07cfe3ea51f1f0a49befa82fe4...
Author: Francois Gouget fgouget@free.fr Date: Thu Oct 13 12:15:33 2011 +0200
comctl32/tests: Make impl_from_IStream() static.
---
dlls/comctl32/tests/imagelist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/tests/imagelist.c b/dlls/comctl32/tests/imagelist.c index 36c9b65..f783ce6 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); }