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:
Alex Henrie 2018-12-03 21:42:57 -07:00 committed by Alexandre Julliard
parent 11f8826c13
commit a4adc1d7a8
1 changed files with 1 additions and 1 deletions

View File

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