mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fixing a clang warning indicating uninitialized variable usage.
PR: kern/177164 Approved by: sbruno (mentor)
This commit is contained in:
parent
c851725506
commit
0fcdd1b528
1 changed files with 1 additions and 1 deletions
|
|
@ -578,7 +578,7 @@ static int ips_copperhead_queue_init(ips_softc_t *sc)
|
|||
{
|
||||
int error;
|
||||
bus_dma_tag_t dmatag;
|
||||
bus_dmamap_t dmamap;
|
||||
bus_dmamap_t dmamap = NULL;
|
||||
if (bus_dma_tag_create( /* parent */ sc->adapter_dmatag,
|
||||
/* alignemnt */ 1,
|
||||
/* boundary */ 0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue