aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-show.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-06-05 08:47:13 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-06-05 08:47:13 -0700
commit2ead072e85315387c0cc3c2236cdedb59503881e (patch)
tree9dc435e32610d1c2a0c6f32d07e735a07be6be5b /notmuch-show.c
parent9c7668bdb51e4739eecda83b6452ef668ed0efa3 (diff)
Fix minor style issues in show_part_content function.
I was recently editing the code in this function and decided to clean it up a bit.
Diffstat (limited to 'notmuch-show.c')
-rw-r--r--notmuch-show.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/notmuch-show.c b/notmuch-show.c
index 4ed5fc74..af7854d8 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -221,18 +221,18 @@ show_part_content (GMimeObject *part, GMimeStream *stream_out)
charset = g_mime_object_get_content_type_parameter (part, "charset");
if (stream_out) {
- stream_filter = g_mime_stream_filter_new(stream_out);
- g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
- g_mime_filter_crlf_new(FALSE, FALSE));
+ stream_filter = g_mime_stream_filter_new (stream_out);
+ g_mime_stream_filter_add(GMIME_STREAM_FILTER (stream_filter),
+ g_mime_filter_crlf_new (FALSE, FALSE));
if (charset) {
GMimeFilter *charset_filter;
- charset_filter = g_mime_filter_charset_new(charset, "UTF-8");
+ charset_filter = g_mime_filter_charset_new (charset, "UTF-8");
/* This result can be NULL for things like "unknown-8bit".
* Don't set a NULL filter as that makes GMime print
* annoying assertion-failure messages on stderr. */
if (charset_filter)
- g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
- charset_filter);
+ g_mime_stream_filter_add (GMIME_STREAM_FILTER (stream_filter),
+ charset_filter);
}
}