summaryrefslogtreecommitdiff
path: root/protocols/Weather/weather_update.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_update.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_update.cpp')
-rw-r--r--protocols/Weather/weather_update.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/weather_update.cpp b/protocols/Weather/weather_update.cpp
index 832d4237c1..cf3e61826a 100644
--- a/protocols/Weather/weather_update.cpp
+++ b/protocols/Weather/weather_update.cpp
@@ -572,7 +572,7 @@ int GetWeatherData(HANDLE hContact)
if (cbuf[0] == '#')
cbuf = TranslateTS(DataValue);
DBWriteContactSettingTString(hContact, WEATHERCONDITION, _T2A(Item->Item.Name), cbuf);
- CharLowerBuff(DataValue, _tcslen(DataValue));
+ CharLowerBuff(DataValue, (DWORD)_tcslen(DataValue));
cond = GetIcon(DataValue, Data);
}
else if ( _tcsicmp(Item->Item.Unit, _T("Cond")) == 0) {