mirror of
https://github.com/tmux/tmux.git
synced 2024-11-20 03:18:49 +00:00
Do not printf NULL.
This commit is contained in:
parent
65dd7345e0
commit
d5b92ac37e
2
job.c
2
job.c
@ -80,7 +80,7 @@ job_run(const char *cmd, struct session *s, const char *cwd,
|
||||
|
||||
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
|
||||
return (NULL);
|
||||
log_debug("%s: cmd=%s, cwd=%s", __func__, cmd, cwd);
|
||||
log_debug("%s: cmd=%s, cwd=%s", __func__, cmd, cwd == NULL ? "" : cwd);
|
||||
|
||||
/*
|
||||
* Do not set TERM during .tmux.conf, it is nice to be able to use
|
||||
|
Loading…
Reference in New Issue
Block a user