Francois Gouget : windowscodecs: Make get_metadata_container() static.
Module: wine Branch: master Commit: e7cc7f347d291418b14488075c10654f12f684fa URL: https://source.winehq.org/git/wine.git/?a=commit;h=e7cc7f347d291418b14488075... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Apr 18 03:24:47 2018 +0200 windowscodecs: Make get_metadata_container() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Vincent Povirk <vincent(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/windowscodecs/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windowscodecs/info.c b/dlls/windowscodecs/info.c index 6652ee3..21e6610 100644 --- a/dlls/windowscodecs/info.c +++ b/dlls/windowscodecs/info.c @@ -1514,7 +1514,7 @@ typedef struct UINT container_count; } MetadataReaderInfo; -struct metadata_container *get_metadata_container(MetadataReaderInfo *info, const GUID *guid) +static struct metadata_container *get_metadata_container(MetadataReaderInfo *info, const GUID *guid) { unsigned i;
participants (1)
-
Alexandre Julliard