summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2017-04-03 12:27:28 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2017-04-03 12:27:28 -0400
commit6d3a7a1b84aa91337336aeb9f5f6c7f7fe45675a (patch)
tree0f4a738429c88fceff020be616ca2a4636b31fcc
parent4c80e203b1f722cf4469866ace34c7734391a0b2 (diff)
downloadlibnice-6d3a7a1b84aa91337336aeb9f5f6c7f7fe45675a.tar.gz
stun: Remove double const on int
-rw-r--r--stun/tests/test-conncheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stun/tests/test-conncheck.c b/stun/tests/test-conncheck.c
index 92b947c..69c1883 100644
--- a/stun/tests/test-conncheck.c
+++ b/stun/tests/test-conncheck.c
@@ -74,7 +74,7 @@ int main (void)
} addr;
uint8_t req_buf[STUN_MAX_MESSAGE_SIZE];
uint8_t resp_buf[STUN_MAX_MESSAGE_SIZE];
- const const uint64_t tie = 0x8000000000000000LL;
+ const uint64_t tie = 0x8000000000000000LL;
StunMessageReturn val;
StunUsageIceReturn val2;
size_t len;