diff options
Diffstat (limited to 'plugins/MobileState')
-rw-r--r-- | plugins/MobileState/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MobileState/src/main.cpp b/plugins/MobileState/src/main.cpp index 30fab7c64d..256e727e6b 100644 --- a/plugins/MobileState/src/main.cpp +++ b/plugins/MobileState/src/main.cpp @@ -60,7 +60,7 @@ bool hasMobileClient(MCONTACT hContact, LPARAM) _tcslwr(client);
// Find whether this client contain something from clients list
- for (size_t i = 0; i < SIZEOF(clients); i++)
+ for (size_t i = 0; i < _countof(clients); i++)
if (_tcsstr(client, clients[i]))
return true;
}
|