summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2009-10-26 21:42:04 +0000
committerderaadt <deraadt@openbsd.org>2009-10-26 21:42:04 +0000
commit3abb34e338a756ee0ca5032884c166e0282ede7b (patch)
treeb55bf38f0b9e21525f858d727afce6a5675cd8aa /usr.bin/tmux/cmd.c
parentClear signal flags /before/ taking action and continue afterwards to reduce (diff)
downloadwireguard-openbsd-3abb34e338a756ee0ca5032884c166e0282ede7b.tar.xz
wireguard-openbsd-3abb34e338a756ee0ca5032884c166e0282ede7b.zip
tabs are better; ok nicm
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r--usr.bin/tmux/cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c
index 1796626c757..483d338af4b 100644
--- a/usr.bin/tmux/cmd.c
+++ b/usr.bin/tmux/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.26 2009/10/14 20:52:28 nicm Exp $ */
+/* $OpenBSD: cmd.c,v 1.27 2009/10/26 21:42:04 deraadt Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -179,7 +179,7 @@ struct cmd *
cmd_parse(int argc, char **argv, char **cause)
{
const struct cmd_entry **entryp, *entry;
- struct cmd *cmd;
+ struct cmd *cmd;
char s[BUFSIZ];
int opt, ambiguous = 0;
@@ -842,7 +842,7 @@ cmd_find_pane(struct cmd_ctx *ctx,
/* Get the current session. */
if ((s = cmd_current_session(ctx)) == NULL) {
- ctx->error(ctx, "can't establish current session");
+ ctx->error(ctx, "can't establish current session");
return (NULL);
}
if (sp != NULL)