summaryrefslogtreecommitdiff
path: root/cesar/hal
diff options
context:
space:
mode:
authorThierry Carré2013-02-14 10:55:58 +0100
committerThierry Carré2013-02-21 11:36:12 +0100
commit911fc618da154e841be7136fa01fb817cab84e74 (patch)
treef62534ba6e965475850f6a2dfdb09809a32fa8da /cesar/hal
parent3a25d86dba34b1f70f5b323a4b029cec480bdf7c (diff)
cesar/hal/phy/test/bridgedma: warning fix about an uninitialized variable
Diffstat (limited to 'cesar/hal')
-rw-r--r--cesar/hal/phy/test/bridgedma/src/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cesar/hal/phy/test/bridgedma/src/common.c b/cesar/hal/phy/test/bridgedma/src/common.c
index aac672f8a1..35492e4cfc 100644
--- a/cesar/hal/phy/test/bridgedma/src/common.c
+++ b/cesar/hal/phy/test/bridgedma/src/common.c
@@ -421,7 +421,7 @@ phy_bridgedma_test_create_job_list_rx (u8 *buffer, uint nb,
pb_t *pb;
phy_bridgedma_job_t *job = NULL;
phy_bridgedma_job_t *job_current;
- u32 header1;
+ u32 header1 = 0;
u32 header2 = 0xdeaddead;
dbg_assert (buffer);