diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-06-06 15:40:46 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-06-10 03:52:35 +0200 |
commit | 71c501d895104d568061a4d0a55c883a9663eb89 (patch) | |
tree | 0f0ef453b477581d585a4c05f634017f2362580c /gdk/directfb/gdkspawn-directfb.c | |
parent | 785027751aaa0405342dcda0337dbd73d96a5d35 (diff) | |
download | gtk+-71c501d895104d568061a4d0a55c883a9663eb89.tar.gz |
Use a GPid on gdk_spawn_on_screen[_with_pipes] instead a gint
Reported by Nick Schermer in bug
https://bugzilla.gnome.org/show_bug.cgi?id=602289
Diffstat (limited to 'gdk/directfb/gdkspawn-directfb.c')
-rw-r--r-- | gdk/directfb/gdkspawn-directfb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/directfb/gdkspawn-directfb.c b/gdk/directfb/gdkspawn-directfb.c index 228dd46643..a33d9d9d16 100644 --- a/gdk/directfb/gdkspawn-directfb.c +++ b/gdk/directfb/gdkspawn-directfb.c @@ -35,7 +35,7 @@ gdk_spawn_on_screen (GdkScreen *screen, GSpawnFlags flags, GSpawnChildSetupFunc child_setup, gpointer user_data, - gint *child_pid, + GPid *child_pid, GError **error) { g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE); @@ -58,7 +58,7 @@ gdk_spawn_on_screen_with_pipes (GdkScreen *screen, GSpawnFlags flags, GSpawnChildSetupFunc child_setup, gpointer user_data, - gint *child_pid, + GPid *child_pid, gint *standard_input, gint *standard_output, gint *standard_error, |