summaryrefslogtreecommitdiff
path: root/funcs/func_groupcount.c
diff options
context:
space:
mode:
authorSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
committerSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
commitce3d56920b15facbb64b3caf0d823a3f57c0dded (patch)
tree0ea4a13885afb281237b3747e85eb6315863ae0a /funcs/func_groupcount.c
parent35a2e09c655f26067db0f51837704886d6ffff78 (diff)
Remove as much trailing whitespace as possible.
Change-Id: I873c1c6d00f447269bd841494459efccdd2c19c0
Diffstat (limited to 'funcs/func_groupcount.c')
-rw-r--r--funcs/func_groupcount.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/funcs/func_groupcount.c b/funcs/func_groupcount.c
index fd775d994..5c6439ba4 100644
--- a/funcs/func_groupcount.c
+++ b/funcs/func_groupcount.c
@@ -17,7 +17,7 @@
/*! \file
*
* \brief Channel group related dialplan functions
- *
+ *
* \ingroup functions
*/
@@ -81,7 +81,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</parameter>
</syntax>
<description>
- <para><replaceable>category</replaceable> can be employed for more fine grained group management. Each channel
+ <para><replaceable>category</replaceable> can be employed for more fine grained group management. Each channel
can only be member of exactly one group per <replaceable>category</replaceable>.</para>
</description>
</function>
@@ -195,14 +195,14 @@ static int group_function_read(struct ast_channel *chan, const char *cmd,
if (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, data))
break;
}
-
+
if (gi) {
ast_copy_string(buf, gi->group, len);
ret = 0;
}
-
+
ast_app_group_list_unlock();
-
+
return ret;
}
@@ -267,7 +267,7 @@ static int group_list_function_read(struct ast_channel *chan, const char *cmd,
snprintf(tmp1, sizeof(tmp1), "%s", gi->group);
}
}
-
+
ast_app_group_list_unlock();
ast_copy_string(buf, tmp1, len);