summaryrefslogtreecommitdiff
path: root/deps/cares/src/inet_ntop.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/cares/src/inet_ntop.c')
-rw-r--r--deps/cares/src/inet_ntop.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/cares/src/inet_ntop.c b/deps/cares/src/inet_ntop.c
index ce3ce588d3..1935a871ce 100644
--- a/deps/cares/src/inet_ntop.c
+++ b/deps/cares/src/inet_ntop.c
@@ -180,8 +180,7 @@ inet_ntop6(const unsigned char *src, char *dst, size_t size)
tp += sprintf(tp, "%x", words[i]);
}
/* Was it a trailing run of 0x00's? */
- if (best.base != -1 && (best.base + best.len) ==
- (NS_IN6ADDRSZ / NS_INT16SZ))
+ if (best.base != -1 && (best.base + best.len) == (NS_IN6ADDRSZ / NS_INT16SZ))
*tp++ = ':';
*tp++ = '\0';