diff options
author | Timo Sirainen <cras@irssi.org> | 2000-05-19 09:17:53 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-05-19 09:17:53 +0000 |
commit | 8f341a930848df129769c642eef8b7f61ca842a4 (patch) | |
tree | 5fd666e9a7cbbcdea511bdf913cc5e7486e91d66 /src | |
parent | ae25925a1fdceeddff25076b5ff557e14f1aa4cb (diff) | |
download | irssi-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')
-rw-r--r-- | src/fe-common/core/printtext.c | 2 |
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"); } |