mirror of
https://github.com/curl/curl.git
synced 2026-07-24 10:17:21 +03:00
Fix compiler warning.
This commit is contained in:
parent
1fa9ef246a
commit
1db063e705
1 changed files with 3 additions and 2 deletions
|
|
@ -555,8 +555,9 @@ static const unsigned char *display_rr(const unsigned char *aptr,
|
|||
if (p + 20 > aptr + dlen)
|
||||
return NULL;
|
||||
printf("\t\t\t\t\t\t( %lu %lu %lu %lu %lu )",
|
||||
DNS__32BIT(p), DNS__32BIT(p+4), DNS__32BIT(p+8),
|
||||
DNS__32BIT(p+12), DNS__32BIT(p+16));
|
||||
(unsigned long)DNS__32BIT(p), (unsigned long)DNS__32BIT(p+4),
|
||||
(unsigned long)DNS__32BIT(p+8), (unsigned long)DNS__32BIT(p+12),
|
||||
(unsigned long)DNS__32BIT(p+16));
|
||||
break;
|
||||
|
||||
case T_TXT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue