summaryrefslogtreecommitdiff
path: root/toxcore/BUILD.bazel
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-28 21:30:39 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-30 23:35:50 +0000
commit92ffad1a72bc8c422426d52ac408bd71242dd047 (patch)
treef592f353068dd2043525dd2cc04d6124a4ed4bc4 /toxcore/BUILD.bazel
parent623e9ac331df7323660e21c8a2226523a5ee713b (diff)
Use nullptr as NULL pointer constant instead of NULL or 0.
This changes only code, no string literals or comments.
Diffstat (limited to 'toxcore/BUILD.bazel')
-rw-r--r--toxcore/BUILD.bazel2
1 files changed, 2 insertions, 0 deletions
diff --git a/toxcore/BUILD.bazel b/toxcore/BUILD.bazel
index f59e55fc..cde5b70c 100644
--- a/toxcore/BUILD.bazel
+++ b/toxcore/BUILD.bazel
@@ -9,6 +9,7 @@ filegroup(
9cc_library( 9cc_library(
10 name = "ccompat", 10 name = "ccompat",
11 hdrs = ["ccompat.h"], 11 hdrs = ["ccompat.h"],
12 visibility = ["//c-toxcore:__subpackages__"],
12) 13)
13 14
14cc_library( 15cc_library(
@@ -31,6 +32,7 @@ cc_library(
31 name = "list", 32 name = "list",
32 srcs = ["list.c"], 33 srcs = ["list.c"],
33 hdrs = ["list.h"], 34 hdrs = ["list.h"],
35 deps = [":ccompat"],
34) 36)
35 37
36cc_library( 38cc_library(