diff options
author | nicm <nicm> | 2017-03-17 14:51:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-03-17 14:51:41 +0000 |
commit | 67d2335130295f626cc87468fc069ecdedf2d92a (patch) | |
tree | 566a2f8d8a61160490a9a97260a6a7c87c08eb13 /cmd-show-messages.c | |
parent | 481e48d119b0cf2fbf2556a6f4b3f4bbda5fdf7e (diff) | |
download | rtmux-67d2335130295f626cc87468fc069ecdedf2d92a.tar.gz rtmux-67d2335130295f626cc87468fc069ecdedf2d92a.tar.bz2 rtmux-67d2335130295f626cc87468fc069ecdedf2d92a.zip |
Fix a couple of argument types.
Diffstat (limited to 'cmd-show-messages.c')
-rw-r--r-- | cmd-show-messages.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-show-messages.c b/cmd-show-messages.c index bc9fc0db..e0b72b9a 100644 --- a/cmd-show-messages.c +++ b/cmd-show-messages.c @@ -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); |