diff options
author | 2013-03-21 16:09:17 +0000 | |
---|---|---|
committer | 2013-03-21 16:09:17 +0000 | |
commit | e7f89567ac013f2f29ffd4d761011d5036615db8 (patch) | |
tree | 7ae5705d8bbd3cb925b23af390adfd356921194c /usr.bin/tmux/cmd-choose-buffer.c | |
parent | Miscellaneous tidying of choose API, including: (diff) | |
download | wireguard-openbsd-e7f89567ac013f2f29ffd4d761011d5036615db8.tar.xz wireguard-openbsd-e7f89567ac013f2f29ffd4d761011d5036615db8.zip |
Remove free callback for window_choose_data objects.
Diffstat (limited to 'usr.bin/tmux/cmd-choose-buffer.c')
-rw-r--r-- | usr.bin/tmux/cmd-choose-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-choose-buffer.c b/usr.bin/tmux/cmd-choose-buffer.c index 305e8e6d8e2..75c293d61d1 100644 --- a/usr.bin/tmux/cmd-choose-buffer.c +++ b/usr.bin/tmux/cmd-choose-buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-choose-buffer.c,v 1.11 2013/03/21 16:08:24 nicm Exp $ */ +/* $OpenBSD: cmd-choose-buffer.c,v 1.12 2013/03/21 16:09:17 nicm Exp $ */ /* * Copyright (c) 2010 Nicholas Marriott <nicm@users.sourceforge.net> @@ -91,7 +91,7 @@ cmd_choose_buffer_exec(struct cmd *self, struct cmd_ctx *ctx) } free(action); - window_choose_ready(wl->window->active, 0, NULL, NULL); + window_choose_ready(wl->window->active, 0, NULL); return (CMD_RETURN_NORMAL); } |