summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2017-02-16 13:24:30 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-02-16 13:24:30 -0600
commitab34e46b3a5ed53d3a28dfc7d38762691ddccf37 (patch)
tree5b7fd3ee985b494b6046aef2e70ba91def7017cc /main/channel.c
parent11da7b510643d116ea1f209330cff56b5ee6585a (diff)
parentf8f513d363fd10148976c592cbc8be860cda28ab (diff)
Merge "stream: Rename creates/destroys to allocs/frees"
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index c74e9475f..1e7bc563e 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -897,7 +897,7 @@ __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char
return ast_channel_unref(tmp);
}
- if (!(topology = ast_stream_topology_create())) {
+ if (!(topology = ast_stream_topology_alloc())) {
return ast_channel_unref(tmp);
}
ast_channel_internal_set_stream_topology(tmp, topology);