summaryrefslogtreecommitdiffstats
path: root/cmd-paste-buffer.c
diff options
context:
space:
mode:
authornicm <nicm>2015-08-29 09:25:00 +0000
committernicm <nicm>2015-08-29 09:25:00 +0000
commitb56958500036970023c7a53264331cd10a5bbed2 (patch)
tree4e919788d8f30a08c048d573449a79e03fc06cc1 /cmd-paste-buffer.c
parentb9f0571780e7058a70a8cc3b6805b6f1a73061e0 (diff)
Move struct paste_buffer out of tmux.h.
Diffstat (limited to 'cmd-paste-buffer.c')
-rw-r--r--cmd-paste-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-paste-buffer.c b/cmd-paste-buffer.c
index 6d5fb9fd..d4ff93d1 100644
--- a/cmd-paste-buffer.c
+++ b/cmd-paste-buffer.c
@@ -58,7 +58,7 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
bufname = args_get(args, 'b');
if (bufname == NULL)
- pb = paste_get_top();
+ pb = paste_get_top(NULL);
else {
pb = paste_get_name(bufname);
if (pb == NULL) {