diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-17 23:04:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-19 19:24:16 +0300 |
commit | 2e125090810014fa46cd9bb27b2e4daea32ba2f4 (patch) | |
tree | 6b8d6ea72c0adeb7c9ba2a6e01490d6437fa94f6 /protocols/ICQ-WIM/src | |
parent | b04db4768abe18ae03e3f9b6f9d7be569d9f14a9 (diff) |
MIME types are of type char, not wchar_t
Diffstat (limited to 'protocols/ICQ-WIM/src')
-rw-r--r-- | protocols/ICQ-WIM/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/utils.cpp b/protocols/ICQ-WIM/src/utils.cpp index bbb0faef31..7467ffee31 100644 --- a/protocols/ICQ-WIM/src/utils.cpp +++ b/protocols/ICQ-WIM/src/utils.cpp @@ -223,7 +223,7 @@ INT_PTR __cdecl CIcqProto::SetAvatar(WPARAM, LPARAM lParam) return 3; } - pReq->AddHeader("Content-Type", _T2A(ProtoGetAvatarMimeType(iAvatarType))); + pReq->AddHeader("Content-Type", ProtoGetAvatarMimeType(iAvatarType)); } Push(pReq); |