summaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2009-11-11 04:44:25 +0000
committerNanang Izzuddin <nanang@teluu.com>2009-11-11 04:44:25 +0000
commita21a37874c4a417cb8c9bf2a8425af33dd504e99 (patch)
tree957e7b37dbedc5d303a49e16b2c95cc11ae9c950 /third_party
parent02218a8ad18425a694768fedd415e66038178b5c (diff)
Misc (#951): compile warning in norm_s() in g7221 basic_op.c, expression always results false, passed codec vector test after fix applied on win64 and mac.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3017 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/g7221/common/basic_op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/g7221/common/basic_op.c b/third_party/g7221/common/basic_op.c
index 8c6e71dc..028d06fe 100644
--- a/third_party/g7221/common/basic_op.c
+++ b/third_party/g7221/common/basic_op.c
@@ -1135,7 +1135,7 @@ LIBG7221_DEF(Word16) norm_s (Word16 var1)
}
else
{
- if (var1 == (UWord16)0xffff)
+ if ((UWord16)var1 == (UWord16)0xffff)
{
var_out = 15;
}