diff options
author | Benjamin Otte <otte@gnome.org> | 2016-02-06 03:58:39 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-02-11 03:44:47 +0100 |
commit | 573f51cb29887d83c5c95e17378aaf7aa6aa9f32 (patch) | |
tree | 54b288a5ba964b77f3bcad59e8f3f56fce031000 /gtk/gtkmountoperation-stub.c | |
parent | 1d980192fa16fc4585151239c18afc1c988da397 (diff) | |
download | gtk+-573f51cb29887d83c5c95e17378aaf7aa6aa9f32.tar.gz |
mountoperation: Silence gcc
Also, printf()ing a GPid should be forbidden.
Diffstat (limited to 'gtk/gtkmountoperation-stub.c')
-rw-r--r-- | gtk/gtkmountoperation-stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmountoperation-stub.c b/gtk/gtkmountoperation-stub.c index 7307052c0a..e053324065 100644 --- a/gtk/gtkmountoperation-stub.c +++ b/gtk/gtkmountoperation-stub.c @@ -60,7 +60,7 @@ _gtk_mount_operation_kill_process (GPid pid, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Cannot kill process with PID %d. Operation is not implemented."), - (int) pid); + (int) (gssize) pid); return FALSE; } |