From f3ed56298356202b70f5aeba011de512ae6ccaef Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 30 Sep 2015 17:01:57 +0200 Subject: [PATCH] minor: removed superfluous comma after '}' in dns.c --- src/core/dns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/dns.c b/src/core/dns.c index 57008248..6a90f12a 100644 --- a/src/core/dns.c +++ b/src/core/dns.c @@ -688,7 +688,7 @@ dns_compare_name(char *query, struct pbuf* p, u16_t start_offset) ++response_offset; ++query; --n; - }; + } ++query; } } while (pbuf_get_at(p, response_offset) != 0); @@ -719,7 +719,7 @@ dns_parse_name(struct pbuf* p, u16_t query_idx) while (n > 0) { ++query_idx; --n; - }; + } } } while (pbuf_get_at(p, query_idx) != 0);