diff options
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/contacts.cpp b/src/mir_app/src/contacts.cpp index 3a49e7a3e9..382ef24d8b 100644 --- a/src/mir_app/src/contacts.cpp +++ b/src/mir_app/src/contacts.cpp @@ -46,7 +46,7 @@ static int GetDatabaseString(MCONTACT hContact, const char *szProto, const char DBCONTACTGETSETTING cgs = { szProto, szSetting, dbv };
dbv->type = DBVT_WCHAR;
- int res = CallProtoService(szProto, PS_GETINFOSETTING, (WPARAM)hContact, (LPARAM)&cgs);
+ INT_PTR res = CallProtoService(szProto, PS_GETINFOSETTING, (WPARAM)hContact, (LPARAM)&cgs);
if (res != CALLSERVICE_NOTFOUND)
return res;
}
|