aboutsummaryrefslogtreecommitdiff
path: root/ares/bitncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ares/bitncmp.c')
-rw-r--r--ares/bitncmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/bitncmp.c b/ares/bitncmp.c
index 3986dc6c8..0da540fff 100644
--- a/ares/bitncmp.c
+++ b/ares/bitncmp.c
@@ -36,7 +36,7 @@
*/
int
ares_bitncmp(const void *l, const void *r, int n) {
- u_int lb, rb;
+ unsigned int lb, rb;
int x, b;
b = n / 8;
@@ -44,8 +44,8 @@ ares_bitncmp(const void *l, const void *r, int n) {
if (x)
return (x);
- lb = ((const u_char *)l)[b];
- rb = ((const u_char *)r)[b];
+ lb = ((const unsigned char *)l)[b];
+ rb = ((const unsigned char *)r)[b];
for (b = n % 8; b > 0; b--) {
if ((lb & 0x80) != (rb & 0x80)) {
if (lb & 0x80)