<h1>Project "FreeSWITCH Source" received a push.</h1>
<h2>branch: master updated</h2>
<pre>
via: 3cd120a02e28225cc89f6898a317fd4f93b0c138 (commit)
from: 180e3d4ab1943361610ca241d150565aad8d16fd (commit)
</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Jeff Lenk
comments:
fix warning
<span style="color: #000080; font-weight: bold">diff --git a/src/switch_resample.c b/src/switch_resample.c</span>
<span style="color: #000080; font-weight: bold">index 64656b6..949b351 100644</span>
<span style="color: #A00000">--- a/src/switch_resample.c</span>
<span style="color: #00A000">+++ b/src/switch_resample.c</span>
<span style="color: #800080; font-weight: bold">@@ -299,7 +299,7 @@ SWITCH_DECLARE(void) switch_change_sln_volume_granular(int16_t *data, uint32_t s</span>
                int16_t *fp = data;
                for (x = 0; x < samples; x++) {
<span style="color: #A00000">-                        tmp = (int32_t) fp[x] * newrate;</span>
<span style="color: #00A000">+                        tmp = (int32_t) (fp[x] * newrate);</span>
                        switch_normalize_to_16bit(tmp);
                        fp[x] = (int16_t) tmp;
                }
</pre></div>
========================================================================<pre>
Summary of changes:
src/switch_resample.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
</pre>
<p>this email was generated because of /git/your-repo.git/hooks/post-receive by the file /git-core/contrib/hooks/post-receive-email<br />
For more info, see <a href="http://blog.chomperstomp.com/?p=630">http://blog.chomperstomp.com/?p=630</a>
-- <br />
FreeSWITCH Source</p>