1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Fix typo maxinum->maximum

This commit is contained in:
Klement Sekera 2016-03-07 14:06:10 +01:00
parent 09cfbb7e05
commit e1b15182a4

View File

@ -5160,7 +5160,7 @@ cmd_log(ProfWin *window, const char *const command, gchar **args)
gboolean res = strtoi_range(value, &intval, PREFS_MIN_LOG_SIZE, INT_MAX, &err_msg);
if (res) {
prefs_set_max_log_size(intval);
cons_show("Log maxinum size set to %d bytes", intval);
cons_show("Log maximum size set to %d bytes", intval);
} else {
cons_show(err_msg);
free(err_msg);