[gnome-builder] libide/gui: remove extraneous newline



commit 2a4c1af0841a05e29b320a87f9519eb133ad42dc
Author: Christian Hergert <chergert redhat com>
Date:   Thu Aug 18 13:24:55 2022 -0700

    libide/gui: remove extraneous newline

 src/libide/gui/ide-application.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/libide/gui/ide-application.c b/src/libide/gui/ide-application.c
index f1ee18f0d..76f24d725 100644
--- a/src/libide/gui/ide-application.c
+++ b/src/libide/gui/ide-application.c
@@ -397,7 +397,7 @@ _ide_application_add_resources (IdeApplication *self,
       if (bytes != NULL)
         {
           GtkCssProvider *provider = get_css_provider (self, resource_path);
-          g_debug ("Loading CSS from resource path %s\n", css_path);
+          g_debug ("Loading CSS from resource path %s", css_path);
           gtk_css_provider_load_from_resource (provider, css_path);
         }
     }
@@ -408,7 +408,7 @@ _ide_application_add_resources (IdeApplication *self,
       if (g_file_test (css_path, G_FILE_TEST_IS_REGULAR))
         {
           GtkCssProvider *provider = get_css_provider (self, resource_path);
-          g_debug ("Loading CSS from file path %s\n", css_path);
+          g_debug ("Loading CSS from file path %s", css_path);
           gtk_css_provider_load_from_path (provider, css_path);
         }
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]