diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-30 15:07:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-30 15:07:16 +0000 |
commit | ebc5381c5e46dc9c51d75fad2afc66fbe96919ab (patch) | |
tree | f316204e8283731143cb4908f189a51b542b6376 /protocols/Weather/weather_ini.cpp | |
parent | b0075c0b3720c8cb211e8672b4f6ed92c0c28afe (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@235 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Weather/weather_ini.cpp')
-rw-r--r-- | protocols/Weather/weather_ini.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/weather_ini.cpp b/protocols/Weather/weather_ini.cpp index b3c0be722c..6273ecad50 100644 --- a/protocols/Weather/weather_ini.cpp +++ b/protocols/Weather/weather_ini.cpp @@ -137,7 +137,7 @@ void WICondListAdd(char *str, WICONDLIST *List) {
WICONDITEM *newItem = (WICONDITEM*)mir_alloc(sizeof(WICONDITEM));
wSetData(&newItem->Item, str);
- CharLowerBuff(newItem->Item, _tcslen( newItem->Item ));
+ CharLowerBuff(newItem->Item, (DWORD)_tcslen( newItem->Item ));
newItem->Next = NULL;
if (List->Tail == NULL) List->Head = newItem;
else List->Tail->Next = newItem;
|