summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2015-08-01 14:29:40 +0200
committerAlfred E. Heggestad <aeh@db.org>2015-08-01 14:29:40 +0200
commit056f6e68811a3e3c0d9af86bc86e0257148aa25d (patch)
treebe34e9005743d674a83636c934b4eee567aaf59e /modules
parent190e43d590184138a728e163b8f54412908bc5e2 (diff)
menu: fix whitespace
Diffstat (limited to 'modules')
-rw-r--r--modules/menu/menu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/menu/menu.c b/modules/menu/menu.c
index ca1c1fa..08bd49c 100644
--- a/modules/menu/menu.c
+++ b/modules/menu/menu.c
@@ -286,6 +286,7 @@ static int options_command(struct re_printf *pf, void *arg)
return err;
}
+
static int cmd_answer(struct re_printf *pf, void *unused)
{
(void)pf;
@@ -467,6 +468,7 @@ static int call_reinvite(struct re_printf *pf, void *unused)
return call_modify(ua_call(uag_cur()));
}
+
static int call_mute(struct re_printf *pf, void *unused)
{
struct audio *audio = call_audio(ua_call(uag_cur()));
@@ -510,6 +512,7 @@ static int call_holdresume(struct re_printf *pf, void *arg)
return call_hold(ua_call(uag_cur()), 'x' == carg->key);
}
+
static int hold_prev_call(struct re_printf *pf, void *unused)
{
(void)pf;
@@ -517,6 +520,7 @@ static int hold_prev_call(struct re_printf *pf, void *unused)
return call_hold(ua_prev_call(uag_cur()), true);
}
+
#ifdef USE_VIDEO
static int call_videoenc_cycle(struct re_printf *pf, void *unused)
{
@@ -573,7 +577,7 @@ static const struct cmd callcmdv[] = {
{'m', 0, "Call mute/un-mute", call_mute },
{'r', CMD_IPRM,"Transfer call", call_xfer },
{'x', 0, "Call hold", call_holdresume },
- {'H', 0, "Hold previous call", hold_prev_call },
+ {'H', 0, "Hold previous call", hold_prev_call },
#ifdef USE_VIDEO
{'E', 0, "Cycle video encoder", call_videoenc_cycle },