Date: Wed, 7 Oct 2015 03:33:25 +0000 (UTC) From: Kevin Lo <kevlo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288975 - head/sys/dev/otus Message-ID: <201510070333.t973XPWR054297@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevlo Date: Wed Oct 7 03:33:25 2015 New Revision: 288975 URL: https://svnweb.freebsd.org/changeset/base/288975 Log: Declare odata as a pointer type instead of a pointer to pointer. Reviewed by: adrian Modified: head/sys/dev/otus/if_otusreg.h Modified: head/sys/dev/otus/if_otusreg.h ============================================================================== --- head/sys/dev/otus/if_otusreg.h Wed Oct 7 02:13:02 2015 (r288974) +++ head/sys/dev/otus/if_otusreg.h Wed Oct 7 03:33:25 2015 (r288975) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510070333.t973XPWR054297>