summaryrefslogtreecommitdiff
path: root/toxcore/TCP_server.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-07-07 21:40:17 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-07-08 19:03:52 +0000
commit2b49f803959cf47f81d1b49032f7c6f30ccc37f7 (patch)
treede26ad6da901c7d951e66745ee80545b71300abb /toxcore/TCP_server.c
parentebdc43285a4fdf1f9d76f8839a9ba572a35cbb80 (diff)
Rename `BS_LIST` to `BS_List` to follow the naming conventions.
`BS_LIST` would be a constant. `BS_List` is a type name.
Diffstat (limited to 'toxcore/TCP_server.c')
-rw-r--r--toxcore/TCP_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/TCP_server.c b/toxcore/TCP_server.c
index 65dc81c3..b31fab72 100644
--- a/toxcore/TCP_server.c
+++ b/toxcore/TCP_server.c
@@ -91,7 +91,7 @@ struct TCP_Server {
91 91
92 uint64_t counter; 92 uint64_t counter;
93 93
94 BS_LIST accepted_key_list; 94 BS_List accepted_key_list;
95}; 95};
96 96
97const uint8_t *tcp_server_public_key(const TCP_Server *tcp_server) 97const uint8_t *tcp_server_public_key(const TCP_Server *tcp_server)