diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-01 00:52:05 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-01 00:52:05 +0000 |
commit | 777da6a8fa210d027e5fd47919a8d7c18b9c5613 (patch) | |
tree | ecc0abfc5ed96b67afcd054400de02cdbda38bbe /protocols/Gadu-Gadu | |
parent | faccf4803bd25abbb27402ab1127d085efd9061f (diff) |
fix buf size for mir_sntprintf()
git-svn-id: http://svn.miranda-ng.org/main/trunk@11186 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Gadu-Gadu/src/gg_proto.cpp b/protocols/Gadu-Gadu/src/gg_proto.cpp index 248f33e393..1f527f6bb5 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.cpp +++ b/protocols/Gadu-Gadu/src/gg_proto.cpp @@ -482,7 +482,7 @@ HWND GGPROTO::SearchAdvanced(HWND hwndDlg) yearFrom = 0;
else
yearFrom = ay - yearFrom;
- mir_sntprintf(text, sizeof(text), _T("%d %d"), yearFrom, yearTo);
+ mir_sntprintf(text, SIZEOF(text), _T("%d %d"), yearFrom, yearTo);
char *age_utf8 = mir_utf8encodeT(text);
gg_pubdir50_add(req, GG_PUBDIR50_BIRTHYEAR, age_utf8);
|