mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
fix compile issue with gcc 9.1.0 (issue #868)
This commit is contained in:
parent
d8ecc98a8e
commit
70dbfc3fc7
3 changed files with 15 additions and 15 deletions
|
@ -998,7 +998,7 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
|||
switch(c->cmd) {
|
||||
#ifdef WITH_LF
|
||||
case CMD_SET_LF_SAMPLING_CONFIG:
|
||||
setSamplingConfig((sample_config *) c->d.asBytes);
|
||||
setSamplingConfig(c->d.asBytes);
|
||||
break;
|
||||
case CMD_ACQUIRE_RAW_ADC_SAMPLES_125K:
|
||||
cmd_send(CMD_ACK,SampleLF(c->arg[0], c->arg[1]),0,0,0,0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue