diff options
author | Michael Natterer <mitch@imendio.com> | 2007-09-04 12:04:07 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2007-09-04 12:04:07 +0000 |
commit | 395c785512f30cfd74fff878556c5e47199b5515 (patch) | |
tree | f51d9c04c2e39d02e8345e0332ad4dba5e414c1f /gtk/gtkmodules.c | |
parent | 0df0fe47d6600ae2ed6a5f7537cac3ba6cd3f700 (diff) | |
download | gtk+-395c785512f30cfd74fff878556c5e47199b5515.tar.gz |
added missing \n to g_print() in GTK_NOTE().
2007-09-04 Michael Natterer <mitch@imendio.com>
* gtk/gtkmodules.c: added missing \n to g_print() in GTK_NOTE().
svn path=/trunk/; revision=18720
Diffstat (limited to 'gtk/gtkmodules.c')
-rw-r--r-- | gtk/gtkmodules.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c index c72516f0ce..23e6bbbf62 100644 --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -359,7 +359,7 @@ gtk_module_info_unref (GtkModuleInfo *info) if (info->ref_count == 0) { GTK_NOTE (MODULES, - g_print ("Unloading module: %s", g_module_name (info->module))); + g_print ("Unloading module: %s\n", g_module_name (info->module))); gtk_modules = g_slist_remove (gtk_modules, info); g_module_close (info->module); @@ -377,7 +377,7 @@ load_modules (const char *module_str) GSList *module_list = NULL; gint i; - GTK_NOTE (MODULES, g_print ("Loading module list: %s", module_str)); + GTK_NOTE (MODULES, g_print ("Loading module list: %s\n", module_str)); module_names = pango_split_file_list (module_str); for (i = 0; module_names[i]; i++) |