diff options
Diffstat (limited to 'fastboot/usbtest.c')
-rw-r--r-- | fastboot/usbtest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fastboot/usbtest.c b/fastboot/usbtest.c index 488db06..b8fb9e2 100644 --- a/fastboot/usbtest.c +++ b/fastboot/usbtest.c @@ -35,8 +35,8 @@ #include "usb.h" -static int arg_size = 4096; -static int arg_count = 4096; +static unsigned arg_size = 4096; +static unsigned arg_count = 4096; long long NOW(void) { @@ -134,7 +134,7 @@ struct { "send", match_null, test_null, "send to null interface" }, { "recv", match_zero, test_zero, "recv from zero interface" }, { "loop", match_loop, 0, "exercise loopback interface" }, - { NULL, NULL, NULL, NULL }, + {}, }; int usage(void) |