Add forgotten newlines in debug messages.
This commit is contained in:
parent
01d3084ec0
commit
d3b3a2b79b
@ -269,7 +269,7 @@ _dns_getnetbyaddr(void *rval, void *cb_data, va_list ap)
|
||||
} else if (anslen > sizeof(buf)) {
|
||||
#ifdef DEBUG
|
||||
if (_res.options & RES_DEBUG)
|
||||
printf("res_search static buffer too small");
|
||||
printf("res_search static buffer too small\n");
|
||||
#endif
|
||||
return NS_UNAVAIL;
|
||||
}
|
||||
@ -315,7 +315,7 @@ _dns_getnetbyname(void *rval, void *cb_data, va_list ap)
|
||||
} else if (anslen > sizeof(buf)) {
|
||||
#ifdef DEBUG
|
||||
if (_res.options & RES_DEBUG)
|
||||
printf("res_search static buffer too small");
|
||||
printf("res_search static buffer too small\n");
|
||||
#endif
|
||||
return NS_UNAVAIL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user