summaryrefslogtreecommitdiff
path: root/toxcore/TCP_client.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-03-14 03:37:28 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-14 13:40:36 +0000
commit94d98ddd863279d5bf811d0107d73c373380dda2 (patch)
tree543a21f95e30c86e314dce4577f99421789bba0d /toxcore/TCP_client.h
parentcb22b3df5f0b7509a37e091360ecbb4d8a9f2873 (diff)
Standardise on having a comma at the end of enums.
Most of our enums already have one. Some didn't. Tokstyle is going to require commas at the end of enumerator lists in enum definitions.
Diffstat (limited to 'toxcore/TCP_client.h')
-rw-r--r--toxcore/TCP_client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/TCP_client.h b/toxcore/TCP_client.h
index 89f0d779..cecf5a6d 100644
--- a/toxcore/TCP_client.h
+++ b/toxcore/TCP_client.h
@@ -17,7 +17,7 @@
17typedef enum TCP_Proxy_Type { 17typedef enum TCP_Proxy_Type {
18 TCP_PROXY_NONE, 18 TCP_PROXY_NONE,
19 TCP_PROXY_HTTP, 19 TCP_PROXY_HTTP,
20 TCP_PROXY_SOCKS5 20 TCP_PROXY_SOCKS5,
21} TCP_Proxy_Type; 21} TCP_Proxy_Type;
22 22
23typedef struct TCP_Proxy_Info { 23typedef struct TCP_Proxy_Info {