mirror of
https://github.com/tmux/tmux.git
synced 2025-01-14 20:58:53 +00:00
Fix argument order in a log statement.
This commit is contained in:
parent
51a1dbfe09
commit
8378be03d1
2
server.c
2
server.c
@ -166,7 +166,7 @@ server_start(int lockfd, char *lockfile)
|
||||
load_cfg(SYSTEM_CFG, NULL, &cfg_causes);
|
||||
else if (errno != ENOENT) {
|
||||
cfg_add_cause(
|
||||
&cfg_causes, "%s: %s", strerror(errno), SYSTEM_CFG);
|
||||
&cfg_causes, "%s: %s", SYSTEM_CFG, strerror(errno));
|
||||
}
|
||||
if (cfg_file != NULL)
|
||||
load_cfg(cfg_file, NULL, &cfg_causes);
|
||||
|
Loading…
Reference in New Issue
Block a user