diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-24 10:03:57 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-24 10:03:57 +0100 |
commit | 3e2943a0e0b6ec1f81849445cb5021028d526762 (patch) | |
tree | a6feae6da18b7cea5a2ad117ff9aa03c12264e33 /src/gui | |
parent | b491cc34792dedd95457497fa2dec2d890ff3a4c (diff) | |
download | weechat-3e2943a0e0b6ec1f81849445cb5021028d526762.zip |
Fix bug with nicklist prefix in log file
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-nicklist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-nicklist.c b/src/gui/gui-nicklist.c index f6174274c..8e1bce9ef 100644 --- a/src/gui/gui-nicklist.c +++ b/src/gui/gui-nicklist.c @@ -844,7 +844,7 @@ gui_nicklist_print_log (struct t_gui_nick_group *group, int indent) (indent * 2) + 6); log_printf (format, " ", ptr_nick->color); snprintf (format, sizeof (format), - "%%-%dsprefix. . . . . : '%%c'", + "%%-%dsprefix. . . . . : '%%s'", (indent * 2) + 6); log_printf (format, " ", ptr_nick->prefix); snprintf (format, sizeof (format), |