Merge branch 'stop-spamming' into 'main'

gspawn: Stop spewing debug messages

See merge request GNOME/glib!3732
This commit is contained in:
Philip Withnall 2023-11-28 11:44:48 +00:00
commit 40ca773fa5

View File

@ -2308,7 +2308,7 @@ fork_exec (gboolean intermediate_child,
GPid pid = -1;
GUnixPipe child_err_report_pipe = G_UNIX_PIPE_INIT;
GUnixPipe child_pid_report_pipe = G_UNIX_PIPE_INIT;
guint pipe_flags = cloexec_pipes ? FD_CLOEXEC : 0;
guint pipe_flags = cloexec_pipes ? O_CLOEXEC : 0;
gint status;
const gchar *chosen_search_path;
gchar *search_path_buffer = NULL;