From 62b28546afc01deae13f155f7a283d45c2fd7395 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 23 Dec 2013 15:00:02 -0500 Subject: [PATCH] Trivial formatting fixes --- gio/gcharsetconverter.c | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/gio/gcharsetconverter.c b/gio/gcharsetconverter.c index c7f4807..aa1c881 100644 --- a/gio/gcharsetconverter.c +++ b/gio/gcharsetconverter.c @@ -205,9 +205,9 @@ g_charset_converter_init (GCharsetConverter *local) * Since: 2.24 **/ GCharsetConverter * -g_charset_converter_new (const gchar *to_charset, - const gchar *from_charset, - GError **error) +g_charset_converter_new (const gchar *to_charset, + const gchar *from_charset, + GError **error) { GCharsetConverter *conv; @@ -236,15 +236,15 @@ g_charset_converter_reset (GConverter *converter) } static GConverterResult -g_charset_converter_convert (GConverter *converter, - const void *inbuf, - gsize inbuf_size, - void *outbuf, - gsize outbuf_size, - GConverterFlags flags, - gsize *bytes_read, - gsize *bytes_written, - GError **error) +g_charset_converter_convert (GConverter *converter, + const void *inbuf, + gsize inbuf_size, + void *outbuf, + gsize outbuf_size, + GConverterFlags flags, + gsize *bytes_read, + gsize *bytes_written, + GError **error) { GCharsetConverter *conv; gsize res; @@ -430,9 +430,9 @@ g_charset_converter_iface_init (GConverterIface *iface) } static gboolean -g_charset_converter_initable_init (GInitable *initable, - GCancellable *cancellable, - GError **error) +g_charset_converter_initable_init (GInitable *initable, + GCancellable *cancellable, + GError **error) { GCharsetConverter *conv; @@ -447,8 +447,7 @@ g_charset_converter_initable_init (GInitable *initable, return FALSE; } - conv->iconv = - g_iconv_open (conv->to, conv->from); + conv->iconv = g_iconv_open (conv->to, conv->from); if (conv->iconv == (GIConv)-1) { -- 2.7.4