1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-05-29 12:18:51 +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_req = "PINGPING";
static const char *ping_resp = "PONGPONG"; static const char *ping_resp = "PONGPONG";
if (r == strlen(ping_req) && memcmp(ping_req, buf, strlen(ping_req)) == 0) { 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 0;
} }
return r; return r;