oledb32: Turn variable 'format' into a static constant.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2018-11-30 00:14:16 -07:00 committed by Alexandre Julliard
parent 77a8872fc9
commit 4d525212a9
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
{ {
WCHAR szBuff[39]; WCHAR szBuff[39];
const GUID *id = (const GUID *)src; const GUID *id = (const GUID *)src;
WCHAR format[] = { static const WCHAR format[] = {
'{','%','0','8','X','-','%','0','4','X','-','%','0','4','X','-', '{','%','0','8','X','-','%','0','4','X','-','%','0','4','X','-',
'%','0','2','X','%','0','2','X','-', '%','0','2','X','%','0','2','X','-',
'%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','}',0}; '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','}',0};