summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/popup.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2023-06-08 11:17:30 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2023-06-08 11:17:30 +0000
commit339d074149a2d38004a6ead707d91e061eaae181 (patch)
treea4cbc386d85b9be19e16172508242644f4807ef5 /usr.bin/tmux/popup.c
parent848a36902b950735ffbf30f55b879e791afc48c6 (diff)
Fix mismatch between function prototype and definition, from Anindya
Mukherjee.
Diffstat (limited to 'usr.bin/tmux/popup.c')
-rw-r--r--usr.bin/tmux/popup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/popup.c b/usr.bin/tmux/popup.c
index ad2e1c8cda8..cafbc168c1c 100644
--- a/usr.bin/tmux/popup.c
+++ b/usr.bin/tmux/popup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: popup.c,v 1.48 2023/03/15 19:23:22 nicm Exp $ */
+/* $OpenBSD: popup.c,v 1.49 2023/06/08 11:17:28 nicm Exp $ */
/*
* Copyright (c) 2020 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -637,7 +637,7 @@ int
popup_display(int flags, enum box_lines lines, struct cmdq_item *item, u_int px,
u_int py, u_int sx, u_int sy, struct environ *env, const char *shellcmd,
int argc, char **argv, const char *cwd, const char *title, struct client *c,
- struct session *s, const char* style, const char* border_style,
+ struct session *s, const char *style, const char *border_style,
popup_close_cb cb, void *arg)
{
struct popup_data *pd;