diff options
author | 2020-04-09 15:35:27 +0000 | |
---|---|---|
committer | 2020-04-09 15:35:27 +0000 | |
commit | acf6cf7c355a24026581d67c6247ee2658d66f5e (patch) | |
tree | 3af3d70d81adad2cfd27038acca3e4e8e611eb99 /usr.bin/tmux/tmux.c | |
parent | Make sure that we generate a PLT when a plabel is required even for (diff) | |
download | wireguard-openbsd-acf6cf7c355a24026581d67c6247ee2658d66f5e.tar.xz wireguard-openbsd-acf6cf7c355a24026581d67c6247ee2658d66f5e.zip |
More style nits.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index fcf62444054..2b57c7a35ab 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.195 2020/03/31 17:14:40 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.196 2020/04/09 15:35:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -224,7 +224,7 @@ getversion(void) fatalx("uname failed"); xasprintf(&version, "openbsd-%s", u.release); } - return version; + return (version); } int |