diff options
author | nicm <nicm> | 2017-04-19 12:44:29 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-19 12:44:29 +0000 |
commit | 689f4bfac22597e7fd2090373bdffe4df1ed5a34 (patch) | |
tree | a77262f7cdeabf39d9576fad8bc53d804dd853ba /tmux.c | |
parent | fa6deb58664739a8073f188a4e3a88a122270537 (diff) | |
download | rtmux-689f4bfac22597e7fd2090373bdffe4df1ed5a34.tar.gz rtmux-689f4bfac22597e7fd2090373bdffe4df1ed5a34.tar.bz2 rtmux-689f4bfac22597e7fd2090373bdffe4df1ed5a34.zip |
Style nits and a missing cast.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -120,7 +120,7 @@ make_label(const char *label) uid = getuid(); if ((s = getenv("TMUX_TMPDIR")) != NULL && *s != '\0') - xasprintf(&base, "%s/tmux-%u", s, uid); + xasprintf(&base, "%s/tmux-%ld", s, (long)uid); else xasprintf(&base, "%s/tmux-%ld", _PATH_TMP, (long)uid); |