1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00

unix: use ensure, not (void)

This commit is contained in:
Pavol Rusnak 2017-12-19 19:42:34 +01:00
parent 7be96048f8
commit eff3ce2aa8
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -106,7 +106,7 @@ int usb_hid_read(uint8_t iface_num, uint8_t *buf, uint32_t len) {
static const char *ping_req = "PINGPING";
static const char *ping_resp = "PONGPONG";
if (r == strlen(ping_req) && memcmp(ping_req, buf, strlen(ping_req)) == 0) {
(void)usb_hid_write(0, (const uint8_t *)ping_resp, strlen(ping_resp));
ensure(usb_hid_write(0, (const uint8_t *)ping_resp, strlen(ping_resp)), NULL);
return 0;
}
return r;