mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-23 18:14:29 +08:00
Squelch a warning.
poll() is a system API on UN*Xes, so calling a variable "poll" causes "declaration of 'poll' shadows a global declaration" warnings in some compilers. Call the argument "poll_interval" instead.
This commit is contained in:
parent
8dda56aa5a
commit
c78c621010
10
print-ntp.c
10
print-ntp.c
@ -466,14 +466,14 @@ p_ntp_delta(netdissect_options *ndo,
|
||||
/* Prints polling interval in log2 as seconds or fraction of second */
|
||||
static void
|
||||
p_poll(netdissect_options *ndo,
|
||||
register const int poll)
|
||||
register const int poll_interval)
|
||||
{
|
||||
if (poll <= -32 || poll >= 32)
|
||||
if (poll_interval <= -32 || poll_interval >= 32)
|
||||
return;
|
||||
|
||||
if (poll >= 0)
|
||||
ND_PRINT((ndo, " (%us)", 1U << poll));
|
||||
if (poll_interval >= 0)
|
||||
ND_PRINT((ndo, " (%us)", 1U << poll_interval));
|
||||
else
|
||||
ND_PRINT((ndo, " (1/%us)", 1U << -poll));
|
||||
ND_PRINT((ndo, " (1/%us)", 1U << -poll_interval));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user