radiotap-gen: Fix -Wmissing-prototypes

radiotap-gen.c:65:6: warning: no previous prototype for function 'gen_u_sig_pkts'
This commit is contained in:
Alexis La Goutte 2022-07-13 17:02:06 +00:00 committed by A Wireshark GitLab Utility
parent b68acb6bff
commit f70546d111
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ uint8_t pkt_data[26] = { 0x1c, 0x0b, 0x00, 0x00, 0x02, 0x00, 0xeb, 0x4b,
/*
* Generate some u_sig packets.
*/
void gen_u_sig_pkts(pcap_dumper_t *dumper)
static void gen_u_sig_pkts(pcap_dumper_t *dumper)
{
struct pcap_pkthdr hdr;
struct complete_pkt pkt;