summaryrefslogtreecommitdiff
path: root/panels
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2022-01-20 18:55:44 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2022-01-20 18:55:44 -0300
commit77b1821a1dd0e2156b87a30e9f8be039d69b2c69 (patch)
tree79abe939c15b679c5acc5082d11ea5de5cd0f64a /panels
parent00cb6386e4143228f53516ac2af7c39f552ff2a2 (diff)
downloadgnome-control-center-77b1821a1dd0e2156b87a30e9f8be039d69b2c69.tar.gz
applications: Switch to g_spawn_check_wait_status()
It's the undeprecated version of g_spawn_check_exit_status().
Diffstat (limited to 'panels')
-rw-r--r--panels/applications/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/panels/applications/utils.c b/panels/applications/utils.c
index bbf88d4b3..bd4c0674e 100644
--- a/panels/applications/utils.c
+++ b/panels/applications/utils.c
@@ -166,7 +166,7 @@ get_output_of (const gchar **argv)
&status, NULL))
return NULL;
- if (!g_spawn_check_exit_status (status, NULL))
+ if (!g_spawn_check_wait_status (status, NULL))
return NULL;
return g_steal_pointer (&output);