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

Reviewed by:	adrian
This commit is contained in:
Kevin Lo 2015-10-07 03:33:25 +00:00
parent 972a5a8725
commit c99a4e8a47
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288975

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;