1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

Make the cmd stored in hfa_cmd structure a uint8_t to match opcodes.

This commit is contained in:
Con Kolivas 2013-10-21 12:14:24 +11:00
parent a999611505
commit 2a92d2ada0

View File

@ -51,7 +51,7 @@ static unsigned char hfa_crc8(unsigned char *h)
}
struct hfa_cmd {
int cmd;
uint8_t cmd;
char *cmd_name;
enum usb_cmds usb_cmd;
};