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
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ struct my_IStream
ULONG iml_data_size; 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); return CONTAINING_RECORD(iface, struct my_IStream, IStream_iface);
} }