Fix a mistake introduced during the latest merge commit.
The status codes in the new EXITCODE macro were not updated to use the new constants with the namespace prefix. As a result building fails when compiling with libusb support.
This commit is contained in:
parent
853407ac52
commit
55b8dbf3be
@ -37,7 +37,7 @@
|
||||
#include "checksum.h"
|
||||
#include "array.h"
|
||||
|
||||
#define EXITCODE(rc) (rc == LIBUSB_ERROR_TIMEOUT ? DEVICE_STATUS_TIMEOUT : DEVICE_STATUS_IO)
|
||||
#define EXITCODE(rc) (rc == LIBUSB_ERROR_TIMEOUT ? DC_STATUS_TIMEOUT : DC_STATUS_IO)
|
||||
|
||||
#define VID 0x0471
|
||||
#define PID 0x0888
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user