From 9ffeac6992774224ebc279e346f99d5ed725bcd9 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 4 Mar 2012 16:15:59 +0000 Subject: Update code and StaticAnlysisTest so that missingInclude warnings do not have to be suppressed, and so that all code except for third party libraries can be checked. Update SingleUSBModeTest makefile to separate out the messages from the test commands. --- Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Bootloaders') diff --git a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c index 4fd6ccf1f..200f40682 100644 --- a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c +++ b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c @@ -195,7 +195,9 @@ usb_dev_handle * open_usb_device(int vid, int pid) struct usb_bus *bus; struct usb_device *dev; usb_dev_handle *h; + #ifdef LIBUSB_HAS_GET_DRIVER_NP char buf[128]; + #endif int r; usb_init(); @@ -390,7 +392,6 @@ int write_usb_device(HANDLE h, void *buf, int len, int timeout) if (r != WAIT_OBJECT_0) return 0; } if (!GetOverlappedResult(h, &ov, &n, FALSE)) return 0; - if (n <= 0) return 0; return 1; } -- cgit v1.2.3