From e84bf4a5995b26423129b9339dd387e2a7431a0a Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Thu, 13 Aug 2015 18:27:21 +0000 Subject: data format fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@14943 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Exchange/src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Exchange/src') diff --git a/plugins/Exchange/src/utils.cpp b/plugins/Exchange/src/utils.cpp index 0919ac6651..32a7a79c01 100644 --- a/plugins/Exchange/src/utils.cpp +++ b/plugins/Exchange/src/utils.cpp @@ -104,7 +104,7 @@ void HexToBin(TCHAR *inData, ULONG &size, LPBYTE &outData) buffer[4] = '\0'; //mark the end of the string for (UINT i = 0; i < size; i++) { _tcsncpy(buffer + 2, &tmp[i * 2], 2); - _stscanf(buffer, _T("%x"), &outData[i]); + _stscanf(buffer, _T("%hhx"), &outData[i]); } } -- cgit v1.2.3