diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-01-20 10:57:11 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-01-20 10:57:11 +0000 |
commit | be33005f4cd0159da43a4f6eed96439ab8c8e439 (patch) | |
tree | b019bbf3b13788b28dc5b869b7f16840a88d3dc5 /usr.bin | |
parent | 354066d37bd2623cf19c9a74431d44945e7e8948 (diff) |
typo in comment ;) ok nicm
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c index 8543fcec797..783f46822e4 100644 --- a/usr.bin/tmux/status.c +++ b/usr.bin/tmux/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.118 2014/11/05 23:15:11 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.119 2015/01/20 10:57:10 sthen Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -328,7 +328,7 @@ draw: wloffset = 0; if (wlwidth < wlavailable) { switch (options_get_number(&s->options, "status-justify")) { - case 1: /* centered */ + case 1: /* centred */ wloffset += (wlavailable - wlwidth) / 2; break; case 2: /* right */ |