diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-11-08 11:48:40 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-11-08 11:48:40 +0100 |
commit | 36590cca77c45ad18568d62cee35ccad74b17397 (patch) | |
tree | 239871305a7b7f8c72e460f67ee477ab10d8b222 /src | |
parent | 7a2c77cd67a310346413a2eb5591b11e84b1bd20 (diff) | |
download | weechat-36590cca77c45ad18568d62cee35ccad74b17397.zip |
Remove compilation warning in logger plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/logger/logger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/logger/logger.c b/src/plugins/logger/logger.c index 650ef95b0..3e65e8231 100644 --- a/src/plugins/logger/logger.c +++ b/src/plugins/logger/logger.c @@ -627,7 +627,7 @@ logger_list () } else { - snprintf (status, sizeof (status), _("not logging")); + snprintf (status, sizeof (status), "%s", _("not logging")); } weechat_printf (NULL, " %s[%s%d%s]%s (%s) %s%s%s: %s%s%s%s", |