From e11fb34385c94255f8aec3f9c731a1310be89df6 Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Mon, 27 Mar 2023 02:26:40 +0200 Subject: [PATCH] tests/t_icc.c: fix formatting --- tests/t_icc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/t_icc.c b/tests/t_icc.c index fa39207..52896e4 100644 --- a/tests/t_icc.c +++ b/tests/t_icc.c @@ -31,7 +31,8 @@ test_webp_icc_output (guchar *buffer, gsize buf_size, const gchar *base64_string } void -test_webp_icc_read (const gchar *path) { +test_webp_icc_read (const gchar *path) +{ GError *error = NULL; GdkPixbuf *icc_pixbuf = gdk_pixbuf_new_from_file (path, &error); @@ -39,7 +40,7 @@ test_webp_icc_read (const gchar *path) { g_error ("%s", error->message); g_assert (icc_pixbuf != NULL); - const gchar* icc_option = gdk_pixbuf_get_option (icc_pixbuf, "icc-profile"); + const gchar *icc_option = gdk_pixbuf_get_option (icc_pixbuf, "icc-profile"); g_assert (icc_option != NULL); g_assert_cmpstr ("MQo=", ==, icc_option);