comctl32/tests: Make impl_from_IStream() static.

This commit is contained in:
Francois Gouget 2011-10-13 12:15:33 +02:00 committed by Alexandre Julliard
parent a552a7a9f5
commit 07cfe3ea51

View File

@ -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);
}