summaryrefslogtreecommitdiff
path: root/src/modules/utils/enterstring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/utils/enterstring.cpp')
-rw-r--r--src/modules/utils/enterstring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/utils/enterstring.cpp b/src/modules/utils/enterstring.cpp
index 156945d14f..84adf3a1e4 100644
--- a/src/modules/utils/enterstring.cpp
+++ b/src/modules/utils/enterstring.cpp
@@ -56,7 +56,7 @@ static void ComboLoadRecentStrings(HWND hwndDlg, EnterStringFormParam *pForm)
{
for (int i = 0; i < pForm->recentCount; i++) {
char setting[MAXMODULELABELLENGTH];
- mir_snprintf(setting, SIZEOF(setting), "%s%d", pForm->szDataPrefix, i);
+ mir_snprintf(setting, "%s%d", pForm->szDataPrefix, i);
ptrT tszRecent(db_get_tsa(NULL, pForm->szModuleName, setting));
if (tszRecent != NULL)
SendDlgItemMessage(hwndDlg, pForm->idcControl, CB_ADDSTRING, 0, tszRecent);
@@ -82,7 +82,7 @@ static void ComboAddRecentString(HWND hwndDlg, EnterStringFormParam *pForm)
id = db_get_b(NULL, pForm->szModuleName, pForm->szDataPrefix, 0);
char setting[MAXMODULELABELLENGTH];
- mir_snprintf(setting, SIZEOF(setting), "%s%d", pForm->szDataPrefix, id);
+ mir_snprintf(setting, "%s%d", pForm->szDataPrefix, id);
db_set_ts(NULL, pForm->szModuleName, setting, string);
db_set_b(NULL, pForm->szModuleName, pForm->szDataPrefix, (id + 1) % pForm->idcControl);
}