diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-25 12:12:08 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-25 12:12:08 +0000 |
commit | 00b6b0140fa76845edaa894e0feb3287e4977c73 (patch) | |
tree | db1f24ab756c218a75f0b6049b0267ca9fea7489 /Bootloaders/HID | |
parent | 0424bd4dbc8a6a22310e4081d2d5dc852a92ea4c (diff) | |
download | lufa-00b6b0140fa76845edaa894e0feb3287e4977c73.tar.gz lufa-00b6b0140fa76845edaa894e0feb3287e4977c73.tar.bz2 lufa-00b6b0140fa76845edaa894e0feb3287e4977c73.zip |
Re-enable cppcheck static analysis unused function checks after adding in special-case suppressions to the event stub functions. Add missing function prototypes to the AudioInput and AudioOutput class driver device demos.
Diffstat (limited to 'Bootloaders/HID')
-rw-r--r-- | Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c index 200f40682..6063e1981 100644 --- a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c +++ b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c @@ -395,17 +395,6 @@ int write_usb_device(HANDLE h, void *buf, int len, int timeout) return 1; } -void print_win32_err(void) -{ - char buf[256]; - DWORD err; - - err = GetLastError(); - FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, err, - 0, buf, sizeof(buf), NULL); - printf("err %ld: %s\n", err, buf); -} - static HANDLE win32_teensy_handle = NULL; int teensy_open(void) |