summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya <kostyarjcnz@gmail.com>2013-08-30 03:02:11 -0400
committerKostya <kostyarjcnz@gmail.com>2013-08-30 03:02:11 -0400
commit790867d984841ba0e28c4100615590870895e7d4 (patch)
treecb6711ff27a1e1ad37ec3455105884651fe562cc
parent8d71f67a727b52e4893508a378cbfc3307a40979 (diff)
Changed naming for IP union.
-rw-r--r--toxcore/network.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxcore/network.h b/toxcore/network.h
index 685341ad..32850944 100644
--- a/toxcore/network.h
+++ b/toxcore/network.h
@@ -81,9 +81,9 @@
81 81
82 82
83typedef union { 83typedef union {
84 uint8_t c[4]; 84 uint8_t uint8[4];
85 uint16_t s[2]; 85 uint16_t uint16[2];
86 uint32_t i; 86 uint32_t uint32;
87} IP; 87} IP;
88 88
89typedef union { 89typedef union {