summaryrefslogtreecommitdiff
path: root/toxav/BUILD.bazel
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-08-11 14:11:55 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-08-13 22:11:48 +0000
commit2d84681529161fd6add331286483ec58c034ba45 (patch)
tree3c70c1cd84371637856b567e28719b0e889757a2 /toxav/BUILD.bazel
parentb77e407b6fe4800eb9c7abce405f804429884643 (diff)
Fix ToxAv's use of `struct Tox`.
* Fix `toxav_get_tox` to return tox, not messenger. * Fix the casts from Tox* to Messenger* in toxav_old.c. * Pass Tox instead of Messenger to public group AV callbacks.
Diffstat (limited to 'toxav/BUILD.bazel')
-rw-r--r--toxav/BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/BUILD.bazel b/toxav/BUILD.bazel
index 1c1b3556..151ac48e 100644
--- a/toxav/BUILD.bazel
+++ b/toxav/BUILD.bazel
@@ -99,7 +99,7 @@ cc_library(
99 srcs = ["groupav.c"], 99 srcs = ["groupav.c"],
100 hdrs = ["groupav.h"], 100 hdrs = ["groupav.h"],
101 deps = [ 101 deps = [
102 "//c-toxcore/toxcore:group", 102 "//c-toxcore/toxcore:toxcore",
103 "@opus", 103 "@opus",
104 ], 104 ],
105) 105)