diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-03-09 11:13:09 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-03-09 11:13:09 +0000 |
commit | 496d82ac4843b3dcf8fe64c216470f41f91120d9 (patch) | |
tree | aa4b0b9fb2dc3034d3428549e2b2e29d02d65ce0 | |
parent | a3021ccf5f41890e4204e413c76843c324752419 (diff) | |
download | irssi-496d82ac4843b3dcf8fe64c216470f41f91120d9.zip |
Fix indentation.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4737 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/fe-core-commands.c | 4 | ||||
-rw-r--r-- | src/fe-common/core/fe-help.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c index 33c9d8aa..afad131d 100644 --- a/src/fe-common/core/fe-core-commands.c +++ b/src/fe-common/core/fe-core-commands.c @@ -141,9 +141,9 @@ static void cmd_cat(const char *data) buf = g_string_sized_new(512); while (g_io_channel_read_line_string(handle, buf, &tpos, NULL) == G_IO_STATUS_NORMAL) { buf->str[tpos] = '\0'; - printtext(NULL, NULL, MSGLEVEL_CLIENTCRAP | + printtext(NULL, NULL, MSGLEVEL_CLIENTCRAP | MSGLEVEL_NEVER, "%s", buf->str); - } + } g_string_free(buf, TRUE); g_io_channel_close(handle); diff --git a/src/fe-common/core/fe-help.c b/src/fe-common/core/fe-help.c index 178a9d3f..c2b1f596 100644 --- a/src/fe-common/core/fe-help.c +++ b/src/fe-common/core/fe-help.c @@ -148,7 +148,7 @@ static int show_help_file(const char *file) buf->str[tpos] = '\0'; g_string_prepend(buf, "%|"); printtext_string(NULL, NULL, MSGLEVEL_CLIENTCRAP, buf->str); - } + } g_string_free(buf, TRUE); g_io_channel_close(handle); |