mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-23 04:36:17 +01:00
Remove extra newline chars in local g_application_command_line_print/err
The extra newline chars in the local implementation of g_application_command_line_print and g_application_command_line_printerr() cause an unwanted newline after printed strings. This patch removes the newline chars to make the functions consistent with their documentation. https://bugzilla.gnome.org/show_bug.cgi?id=680459
This commit is contained in:
parent
151b198b93
commit
10474aca34
@ -177,14 +177,14 @@ static void
|
|||||||
g_application_command_line_real_print_literal (GApplicationCommandLine *cmdline,
|
g_application_command_line_real_print_literal (GApplicationCommandLine *cmdline,
|
||||||
const gchar *message)
|
const gchar *message)
|
||||||
{
|
{
|
||||||
g_print ("%s\n", message);
|
g_print ("%s", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
g_application_command_line_real_printerr_literal (GApplicationCommandLine *cmdline,
|
g_application_command_line_real_printerr_literal (GApplicationCommandLine *cmdline,
|
||||||
const gchar *message)
|
const gchar *message)
|
||||||
{
|
{
|
||||||
g_printerr ("%s\n", message);
|
g_printerr ("%s", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user