diff options
author | 2014-10-20 22:34:31 +0000 | |
---|---|---|
committer | 2014-10-20 22:34:31 +0000 | |
commit | be28c754b7a6b39edc7febe21e6058366b7046f1 (patch) | |
tree | fe99d671e0b9bfc32b683e08e1287cd62350d98d | |
parent | Instead of setting up the default keys by building the key struct (diff) | |
download | wireguard-openbsd-be28c754b7a6b39edc7febe21e6058366b7046f1.tar.xz wireguard-openbsd-be28c754b7a6b39edc7febe21e6058366b7046f1.zip |
Missed a couple of cmd_entry struct members from previous.
-rw-r--r-- | usr.bin/tmux/cmd-respawn-pane.c | 3 | ||||
-rw-r--r-- | usr.bin/tmux/cmd-select-layout.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-respawn-pane.c b/usr.bin/tmux/cmd-respawn-pane.c index be7bd3a3e8c..aa4febaba05 100644 --- a/usr.bin/tmux/cmd-respawn-pane.c +++ b/usr.bin/tmux/cmd-respawn-pane.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-respawn-pane.c,v 1.12 2014/05/13 08:08:32 nicm Exp $ */ +/* $OpenBSD: cmd-respawn-pane.c,v 1.13 2014/10/20 22:34:31 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -35,7 +35,6 @@ const struct cmd_entry cmd_respawn_pane_entry = { "kt:", 0, -1, "[-k] " CMD_TARGET_PANE_USAGE " [command]", 0, - NULL, cmd_respawn_pane_exec }; diff --git a/usr.bin/tmux/cmd-select-layout.c b/usr.bin/tmux/cmd-select-layout.c index 0caa07a7ed0..02fedb615f2 100644 --- a/usr.bin/tmux/cmd-select-layout.c +++ b/usr.bin/tmux/cmd-select-layout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-select-layout.c,v 1.23 2014/10/20 22:29:25 nicm Exp $ */ +/* $OpenBSD: cmd-select-layout.c,v 1.24 2014/10/20 22:34:31 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -30,6 +30,7 @@ const struct cmd_entry cmd_select_layout_entry = { "select-layout", "selectl", "npt:", 0, 1, "[-np] " CMD_TARGET_WINDOW_USAGE " [layout-name]", + 0, cmd_select_layout_exec }; |