summaryrefslogtreecommitdiff
path: root/protocols/Weather/weather_ini.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-05-30 15:07:16 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-05-30 15:07:16 +0000
commitebc5381c5e46dc9c51d75fad2afc66fbe96919ab (patch)
treef316204e8283731143cb4908f189a51b542b6376 /protocols/Weather/weather_ini.cpp
parentb0075c0b3720c8cb211e8672b4f6ed92c0c28afe (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.cpp2
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;