windowscodecs: Make constant 'valuename_format' static.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d90047ed91
commit
5b9dbd9242
|
@ -1032,10 +1032,10 @@ static HRESULT register_pixelformats(struct regsvr_pixelformat const *list)
|
|||
if (res != ERROR_SUCCESS) goto error_close_clsid_key;
|
||||
|
||||
if (list->channelmasks) {
|
||||
static const WCHAR valuename_format[] = {'%','d',0};
|
||||
HKEY masks_key;
|
||||
UINT i, mask_size;
|
||||
WCHAR mask_valuename[11];
|
||||
const WCHAR valuename_format[] = {'%','d',0};
|
||||
|
||||
mask_size = (list->bitsperpixel + 7)/8;
|
||||
|
||||
|
|
Loading…
Reference in New Issue