mirror of
https://github.com/tmux/tmux.git
synced 2024-11-10 13:48:48 +00:00
Fix a couple of argument types.
This commit is contained in:
parent
481e48d119
commit
67d2335130
@ -81,8 +81,8 @@ cmd_show_messages_jobs(struct cmdq_item *item, int blank)
|
||||
cmdq_print(item, "%s", "");
|
||||
blank = 0;
|
||||
}
|
||||
cmdq_print(item, "Job %u: %s [fd=%d, pid=%d, status=%d]",
|
||||
n, job->cmd, job->fd, job->pid, job->status);
|
||||
cmdq_print(item, "Job %u: %s [fd=%d, pid=%ld, status=%d]",
|
||||
n, job->cmd, job->fd, (long)job->pid, job->status);
|
||||
n++;
|
||||
}
|
||||
return (n != 0);
|
||||
|
Loading…
Reference in New Issue
Block a user