mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Fix a couple of argument types.
This commit is contained in:
		@@ -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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user