Remove useless pointer cast
This commit is contained in:
parent
551512ad54
commit
2c5bac191f
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ int main(int argc, const char* argv[])
|
|||
continue;
|
||||
}
|
||||
printf("Tx: ");
|
||||
print_hex((uint8_t*)abtTx,szTx);
|
||||
print_hex(abtTx,szTx);
|
||||
|
||||
szRx = sizeof(abtRx);
|
||||
int res = 0;
|
||||
|
|
Loading…
Reference in a new issue