about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKlement Sekera <klement.sekera@gmail.com>2016-03-07 14:06:10 +0100
committerKlement Sekera <klement.sekera@gmail.com>2016-03-07 14:06:10 +0100
commite1b15182a4a519843b5ed706b2f71a1b0ed46e73 (patch)
treef5026345c2f68920f4f888a2b69c57736ad840d9
parent09cfbb7e05b90af640e0e9f8c9876839747b1974 (diff)
downloadprofani-tty-e1b15182a4a519843b5ed706b2f71a1b0ed46e73.tar.gz
Fix typo maxinum->maximum
-rw-r--r--src/command/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index 79b4def9..093bc43d 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -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);