summaryrefslogtreecommitdiffstats
path: root/avahi-core/dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-core/dns.c')
-rw-r--r--avahi-core/dns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avahi-core/dns.c b/avahi-core/dns.c
index e69b88a..2e1aa26 100644
--- a/avahi-core/dns.c
+++ b/avahi-core/dns.c
@@ -193,8 +193,8 @@ uint8_t* avahi_dns_packet_append_name(AvahiDnsPacket *p, const char *name) {
if (!(t = (uint8_t*) avahi_dns_packet_extend(p, sizeof(uint16_t))))
return NULL;
- t[0] = (uint8_t) ((0xC000 | idx) >> 8);
- t[1] = (uint8_t) idx;
+ t[0] = (uint8_t) ((0xC000 | idx) >> 8);
+ t[1] = (uint8_t) idx;
return saved_ptr;
}
}