summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-load-buffer.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2014-02-14 13:59:01 +0000
committernicm <nicm@openbsd.org>2014-02-14 13:59:01 +0000
commitf37158306a4e3dbfee79c64f03c414f0f3c4bf11 (patch)
tree8484a1ff9906ebe865207477f9c41ac46701fc4c /usr.bin/tmux/cmd-load-buffer.c
parentupdate qle(4) description (diff)
downloadwireguard-openbsd-f37158306a4e3dbfee79c64f03c414f0f3c4bf11.tar.xz
wireguard-openbsd-f37158306a4e3dbfee79c64f03c414f0f3c4bf11.zip
Style nit - no space between function name and bracket.
Diffstat (limited to 'usr.bin/tmux/cmd-load-buffer.c')
-rw-r--r--usr.bin/tmux/cmd-load-buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-load-buffer.c b/usr.bin/tmux/cmd-load-buffer.c
index 1fa7583b119..121bd665494 100644
--- a/usr.bin/tmux/cmd-load-buffer.c
+++ b/usr.bin/tmux/cmd-load-buffer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-load-buffer.c,v 1.25 2013/10/10 12:26:35 nicm Exp $ */
+/* $OpenBSD: cmd-load-buffer.c,v 1.26 2014/02/14 13:59:01 nicm Exp $ */
/*
* Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
@@ -72,7 +72,7 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
buffer_ptr = xmalloc(sizeof *buffer_ptr);
*buffer_ptr = buffer;
- error = server_set_stdin_callback (c, cmd_load_buffer_callback,
+ error = server_set_stdin_callback(c, cmd_load_buffer_callback,
buffer_ptr, &cause);
if (error != 0) {
cmdq_error(cmdq, "%s: %s", path, cause);