Use pid_t for meta_window_get_pid()

The return value of meta_window_get_pid() changed again and it now
returns pid_t, which usually just resolves to int on most platforms. We
should still use pid_t now though, so do that.

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1188
This commit is contained in:
Jonas Dreßler 2020-04-08 16:23:11 +02:00 committed by Florian Müllner
parent 669b0f193a
commit b88ed3f251
2 changed files with 2 additions and 2 deletions

View File

@ -1158,7 +1158,7 @@ shell_app_get_pids (ShellApp *app)
for (iter = shell_app_get_windows (app); iter; iter = iter->next)
{
MetaWindow *window = iter->data;
int pid = meta_window_get_pid (window);
pid_t pid = meta_window_get_pid (window);
if (pid < 1)
continue;

View File

@ -336,7 +336,7 @@ get_app_from_window_pid (ShellWindowTracker *tracker,
MetaWindow *window)
{
ShellApp *result;
int pid;
pid_t pid;
if (meta_window_is_remote (window))
return NULL;