summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-02 15:37:19 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-08 13:20:40 +0000
commit36ba80aacb2a582854f0e5e3ed0d69ca63db52ea (patch)
treea2091d0ad11007b6be9a54ea8463c3fcd25b8212 /other
parent3fcc9a3c83c807792846ae2c9f98aeb447e62805 (diff)
Remove csrc from the RTPHeader struct.
This is not used by anything in the code, so we shouldn't have it in the header.
Diffstat (limited to 'other')
-rw-r--r--other/fun/BUILD.bazel4
1 files changed, 2 insertions, 2 deletions
diff --git a/other/fun/BUILD.bazel b/other/fun/BUILD.bazel
index c3ab510e..93009543 100644
--- a/other/fun/BUILD.bazel
+++ b/other/fun/BUILD.bazel
@@ -10,18 +10,18 @@ cc_binary(
10cc_binary( 10cc_binary(
11 name = "sign", 11 name = "sign",
12 srcs = ["sign.c"], 12 srcs = ["sign.c"],
13 copts = ["-w"],
13 deps = [ 14 deps = [
14 "//c-toxcore/testing:misc_tools", 15 "//c-toxcore/testing:misc_tools",
15 "@libsodium", 16 "@libsodium",
16 ], 17 ],
17 copts = ["-w"],
18) 18)
19 19
20cc_binary( 20cc_binary(
21 name = "strkey", 21 name = "strkey",
22 srcs = ["strkey.c"], 22 srcs = ["strkey.c"],
23 copts = ["-w"],
23 deps = [ 24 deps = [
24 "@libsodium", 25 "@libsodium",
25 ], 26 ],
26 copts = ["-w"],
27) 27)