diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-23 15:52:20 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-23 15:52:20 +0300 |
commit | 51f835c7711083e9b3288eaa8d4513f6ee955a45 (patch) | |
tree | 2f86cd5c8f7d4342299cfebd9e385b4d7611dcd8 /protocols/MSN/src | |
parent | 26c0650cf4a720572fe262d40615ef8e3787368a (diff) |
code cleaning
Diffstat (limited to 'protocols/MSN/src')
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index 0c111cd119..7cf5e8e644 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -635,7 +635,7 @@ void __cdecl CMsnProto::MsnGetAwayMsgThread(void* arg) HANDLE CMsnProto::GetAwayMsg(MCONTACT hContact)
{
- AwayMsgInfo* inf = (AwayMsgInfo*)mir_alloc(sizeof(AwayMsgInfo));
+ AwayMsgInfo *inf = (AwayMsgInfo*)mir_alloc(sizeof(AwayMsgInfo));
inf->hContact = hContact;
inf->id = MSN_GenRandom();
|