summaryrefslogtreecommitdiff
path: root/vpm450m.c
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-20 03:59:02 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-20 03:59:02 +0000
commit6bb74233c5324c867cc17673fbc11334a3a1f0c9 (patch)
treeed59b4d3eec4017efa6607b93afc304c9811714b /vpm450m.c
parent7441e6cc07ffd4de67c6adf7ba4b529f1e89d640 (diff)
suppress a couple of compiler warnings about potentially uninitialized variables
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1128 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'vpm450m.c')
-rw-r--r--vpm450m.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpm450m.c b/vpm450m.c
index 8a222b5..cd7041b 100644
--- a/vpm450m.c
+++ b/vpm450m.c
@@ -21860,7 +21860,7 @@ static UINT32 Oct6100ApiReadIntrptRegs(
UINT32 ulFeatureBytesOffset;
UINT32 ulFeatureBitOffset;
UINT32 ulFeatureFieldLength;
- UINT32 ulTempData;
+ UINT32 ulTempData = 0;
UINT32 ulCounterValue;
UINT32 ulMask;
@@ -25373,7 +25373,7 @@ static UINT32 Oct6100ApiInterpretTlvEntry(
cOCT6100_TLV_MAX_LENGTH_MAX_TAIL_DISPLACEMENT );
if ( ulResult == cOCT6100_ERR_OK )
{
- UINT32 ulTailDispTempValue;
+ UINT32 ulTailDispTempValue = 0;
ulResult = Oct6100ApiReadDword( f_pApiInstance,
f_ulTlvValueAddress,
&ulTailDispTempValue );