diff options
Diffstat (limited to 'protocols/Weather/weather_conv.cpp')
-rw-r--r-- | protocols/Weather/weather_conv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/weather_conv.cpp b/protocols/Weather/weather_conv.cpp index 9f466c3772..8cab451181 100644 --- a/protocols/Weather/weather_conv.cpp +++ b/protocols/Weather/weather_conv.cpp @@ -453,7 +453,7 @@ void TrimString(WCHAR *str) void ConvertBackslashes(char *str)
{
char *pstr;
- for( pstr=str; *pstr; pstr = CharNextA(pstr)) {
+ for ( pstr=str; *pstr; pstr = CharNextA(pstr)) {
if (*pstr=='\\') {
switch(pstr[1]) {
case 'n': *pstr='\n'; break;
|