[zaptel-commits] sruffell: branch 1.4 r3593 - /branches/1.4/wctdm24xxp/GpakCust.c
SVN commits to the Zaptel project
zaptel-commits at lists.digium.com
Wed Jan 2 14:35:09 CST 2008
Author: sruffell
Date: Wed Jan 2 14:35:08 2008
New Revision: 3593
URL: http://svn.digium.com/view/zaptel?view=rev&rev=3593
Log:
Corrected unneeded return value.
Modified:
branches/1.4/wctdm24xxp/GpakCust.c
Modified: branches/1.4/wctdm24xxp/GpakCust.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/wctdm24xxp/GpakCust.c?view=diff&rev=3593&r1=3592&r2=3593
==============================================================================
--- branches/1.4/wctdm24xxp/GpakCust.c (original)
+++ branches/1.4/wctdm24xxp/GpakCust.c Wed Jan 2 14:35:08 2008
@@ -297,14 +297,16 @@
ret = wctdm_vpm150m_getreg_full_async(wc,0,1,DspAddress+i,&pWordValues[i],
&cmds[i]);
if (0 != ret) {
- return ret;
+ dump_stack();
+ return;
}
}
for (i=NumWords-1; i >=0; --i) {
ret = wctdm_vpm150m_getreg_full_return(wc,0,1,DspAddress+i,&pWordValues[i],
&cmds[i]);
if (0 != ret) {
- return ret;
+ dump_stack();
+ return;
}
}
}
More information about the zaptel-commits
mailing list