summaryrefslogtreecommitdiff
path: root/funcs/func_groupcount.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_groupcount.c')
-rw-r--r--funcs/func_groupcount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_groupcount.c b/funcs/func_groupcount.c
index 255a28d69..95ee0cde6 100644
--- a/funcs/func_groupcount.c
+++ b/funcs/func_groupcount.c
@@ -146,7 +146,6 @@ static int group_match_count_function_read(struct ast_channel *chan,
const char *cmd, char *data, char *buf,
size_t len)
{
- int count;
char group[80] = "";
char category[80] = "";
@@ -154,6 +153,7 @@ static int group_match_count_function_read(struct ast_channel *chan,
sizeof(category));
if (!ast_strlen_zero(group)) {
+ int count;
count = ast_app_group_match_get_count(group, category);
snprintf(buf, len, "%d", count);
return 0;