[zaptel-commits] sruffell: branch 1.2 r3594 - /branches/1.2/wctdm24xxp/GpakCust.c
SVN commits to the Zaptel project
zaptel-commits at lists.digium.com
Wed Jan 2 14:35:39 CST 2008
Author: sruffell
Date: Wed Jan 2 14:35:38 2008
New Revision: 3594
URL: http://svn.digium.com/view/zaptel?view=rev&rev=3594
Log:
Removed unneeded return value.
Modified:
branches/1.2/wctdm24xxp/GpakCust.c
Modified: branches/1.2/wctdm24xxp/GpakCust.c
URL: http://svn.digium.com/view/zaptel/branches/1.2/wctdm24xxp/GpakCust.c?view=diff&rev=3594&r1=3593&r2=3594
==============================================================================
--- branches/1.2/wctdm24xxp/GpakCust.c (original)
+++ branches/1.2/wctdm24xxp/GpakCust.c Wed Jan 2 14:35:38 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