oledb32: Make constant 'hexchars' static.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
11f8826c13
commit
a4adc1d7a8
|
@ -638,7 +638,7 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
|
|||
hr = E_OUTOFMEMORY;
|
||||
else
|
||||
{
|
||||
const char hexchars[] = "0123456789ABCDEF";
|
||||
static const char hexchars[] = "0123456789ABCDEF";
|
||||
WCHAR *s = *d;
|
||||
unsigned char *p = src;
|
||||
while (src_len > 0)
|
||||
|
|
Loading…
Reference in New Issue