[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / gcharsetconverter.c
index 3ec621f..86be20e 100644 (file)
@@ -13,9 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  *
  * Author: Alexander Larsson <alexl@redhat.com>
  */
@@ -26,7 +24,6 @@
 
 #include <errno.h>
 
-#include "gcontenttypeprivate.h"
 #include "ginitable.h"
 #include "gioerror.h"
 #include "glibintl.h"
@@ -206,9 +203,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;
 
@@ -237,15 +234,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;
@@ -431,9 +428,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;
 
@@ -448,8 +445,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)
     {