Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libspeex/fixed_debug.h')
-rw-r--r--libspeex/fixed_debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libspeex/fixed_debug.h b/libspeex/fixed_debug.h
index 54f3866..10cb2fa 100644
--- a/libspeex/fixed_debug.h
+++ b/libspeex/fixed_debug.h
@@ -122,7 +122,7 @@ static inline short _SHL16(int a, int shift, char *file, int line)
{
fprintf (stderr, "SHL16: inputs are not short: %d %d in %s: line %d\n", a, shift, file, line);
}
- res = a<<shift;
+ res = (int)((unsigned)a<<shift);
if (!VERIFY_SHORT(res))
fprintf (stderr, "SHL16: output is not short: %d in %s: line %d\n", res, file, line);
spx_mips++;
@@ -151,7 +151,7 @@ static inline int SHL32(long long a, int shift)
{
fprintf (stderr, "SHL32: inputs are not int: %d %d\n", (int)a, shift);
}
- res = a<<shift;
+ res = (long long)((unsigned long long)a<<shift);
if (!VERIFY_INT(res))
{
fprintf (stderr, "SHL32: output is not int: %d\n", (int)res);