commit 8a6dab5d2377662eddfda3016b7d08b0e77b5a92 parent 0dc9c98b40336299c43db9880437418179470df7 Author: sin <sin@2f30.org> Date: Tue, 22 Mar 2016 12:06:44 +0000 remove unnecessary parens Diffstat:
M | stun.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stun.c b/stun.c @@ -285,7 +285,7 @@ pack16(unsigned char *buf, uint16_t n) uint16_t unpack16(unsigned char *buf) { - return (buf[0] << 8) | buf[1]; + return buf[0] << 8 | buf[1]; } void