summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2015-01-20 10:57:10 +0000
committersthen <sthen@openbsd.org>2015-01-20 10:57:10 +0000
commitc78b82f028eb510d4094ba10859780205eefff81 (patch)
tree55bfb06f7393969e7b1c4976ca621a812499ef17
parentCheck for out-of-range indices when searching the default dac and adc. (diff)
downloadwireguard-openbsd-c78b82f028eb510d4094ba10859780205eefff81.tar.xz
wireguard-openbsd-c78b82f028eb510d4094ba10859780205eefff81.zip
typo in comment ;) ok nicm
-rw-r--r--usr.bin/tmux/status.c4
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 */