summaryrefslogtreecommitdiff
path: root/plugins/Variables/src/help.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-03-12 19:37:35 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-03-12 19:37:35 +0300
commit2ebd5155bdf88bdb3fbc76fbf7e9fdc9765133d6 (patch)
treef4a50c8ff88f45e52d20943142de33478559afc7 /plugins/Variables/src/help.cpp
parent413bfdfbc3b4bbcdf5ebe47d83c618c3781c6a82 (diff)
fixes for format specifiers
Diffstat (limited to 'plugins/Variables/src/help.cpp')
-rw-r--r--plugins/Variables/src/help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Variables/src/help.cpp b/plugins/Variables/src/help.cpp
index d2cf8fb869..4999207416 100644
--- a/plugins/Variables/src/help.cpp
+++ b/plugins/Variables/src/help.cpp
@@ -300,7 +300,7 @@ static wchar_t* getTokenDescription(TOKENREGISTEREX *tr)
}
if (tr->flags&TRF_FIELD)
- mir_snwprintf(desc, len, L"%c%s%c", FIELD_CHAR, tr->szTokenString, FIELD_CHAR);
+ mir_snwprintf(desc, len, L"%c%s%c", FIELD_CHAR, tr->szTokenString.w, FIELD_CHAR);
else {
if (args != nullptr)
tArgs = mir_a2u(args);