aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Schodet2019-09-21 20:52:31 +0200
committerNicolas Schodet2019-09-21 20:52:31 +0200
commit3bc8cdfbb9ab4274a64cd7493fe77e3ab79de07c (patch)
tree9870c9d2057e8be8dc089f27ee0987a1452fb3c8
parent29566a5fdcf0a92481181f2571d9673fe7ea226b (diff)
Fix missing paremeters declaration
-rw-r--r--usbdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usbdump.c b/usbdump.c
index 748fdb9..a825c65 100644
--- a/usbdump.c
+++ b/usbdump.c
@@ -170,7 +170,7 @@ void process_packet(struct usbmon_packet *hdr, char *data)
}
-void usb_sniff(bus, address)
+void usb_sniff(int bus, int address)
{
struct mon_mfetch_arg mfetch;
struct usbmon_packet *hdr;