diff options
author | George Hazan <george.hazan@gmail.com> | 2025-04-03 13:55:34 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-04-03 13:55:34 +0300 |
commit | f46c2504821b4c5cb03d04a2ac6cf02ddec7ce99 (patch) | |
tree | e54a26ea02a0149226032131aa7e07d91a6e18a3 /protocols/Weather/src/stdafx.h | |
parent | 3ee53558d61ce75746f28c4a36255241895a98cb (diff) |
static buffers are evil
Diffstat (limited to 'protocols/Weather/src/stdafx.h')
-rw-r--r-- | protocols/Weather/src/stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/src/stdafx.h b/protocols/Weather/src/stdafx.h index eec03bd13e..cf1f3240a3 100644 --- a/protocols/Weather/src/stdafx.h +++ b/protocols/Weather/src/stdafx.h @@ -146,7 +146,7 @@ void TrimString(wchar_t *str); void ConvertBackslashes(char *str);
char *GetSearchStr(char *dis);
-wchar_t *GetDisplay(WEATHERINFO *w, const wchar_t *dis, wchar_t* str);
+CMStringW GetDisplay(WEATHERINFO *w, const wchar_t *dis);
wchar_t *GetError(int code);
|