Commit a4adc1d7 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

oledb32: Make constant 'hexchars' static.

parent 11f8826c
...@@ -638,7 +638,7 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface, ...@@ -638,7 +638,7 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
hr = E_OUTOFMEMORY; hr = E_OUTOFMEMORY;
else else
{ {
const char hexchars[] = "0123456789ABCDEF"; static const char hexchars[] = "0123456789ABCDEF";
WCHAR *s = *d; WCHAR *s = *d;
unsigned char *p = src; unsigned char *p = src;
while (src_len > 0) while (src_len > 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment