summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-19 09:17:53 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-19 09:17:53 +0000
commit8f341a930848df129769c642eef8b7f61ca842a4 (patch)
tree5fd666e9a7cbbcdea511bdf913cc5e7486e91d66 /src/fe-common/core
parentae25925a1fdceeddff25076b5ff557e14f1aa4cb (diff)
downloadirssi-8f341a930848df129769c642eef8b7f61ca842a4.zip
timestamp_timeout setting is integer, not boolean
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@227 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/printtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c
index 7d45e39d..7ddc33b4 100644
--- a/src/fe-common/core/printtext.c
+++ b/src/fe-common/core/printtext.c
@@ -874,7 +874,7 @@ static void sig_gui_dialog(const char *type, const char *text)
static void read_settings(void)
{
timestamps = settings_get_bool("timestamps");
- timestamp_timeout = settings_get_bool("timestamp_timeout");
+ timestamp_timeout = settings_get_int("timestamp_timeout");
msgs_timestamps = settings_get_bool("msgs_timestamps");
hide_text_style = settings_get_bool("hide_text_style");
}