Declare odata as a pointer type instead of a pointer to pointer.

Reviewed by:	adrian
This commit is contained in:
kevlo 2015-10-07 03:33:25 +00:00
parent 3c4eddb710
commit 128f9bc797

View File

@ -874,7 +874,7 @@ struct otus_softc;
struct otus_tx_cmd {
uint8_t *buf;
uint16_t buflen;
void * *odata;
void *odata;
uint16_t odatalen;
uint16_t token;
STAILQ_ENTRY(otus_tx_cmd) next_cmd;