mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix compiling under dev-mode with gcc 4.4.0.
Mostly trivial changes, but I did not know of any other way to fix the "dereferencing type-punned pointer will break strict-aliasing rules" error without creating a tmp variable in chan_skinny. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@208746 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -920,7 +920,7 @@ unsigned int ast_translate_available_formats(unsigned int dest, unsigned int src
|
||||
destination format. */
|
||||
for (x = 1; src_audio && x < AST_FORMAT_MAX_AUDIO; x <<= 1) {
|
||||
/* if this is not a desired format, nothing to do */
|
||||
if (!dest & x)
|
||||
if ((!dest) & x)
|
||||
continue;
|
||||
|
||||
/* if the source is supplying this format, then
|
||||
@@ -946,7 +946,7 @@ unsigned int ast_translate_available_formats(unsigned int dest, unsigned int src
|
||||
destination format. */
|
||||
for (; src_video && x < AST_FORMAT_MAX_VIDEO; x <<= 1) {
|
||||
/* if this is not a desired format, nothing to do */
|
||||
if (!dest & x)
|
||||
if ((!dest) & x)
|
||||
continue;
|
||||
|
||||
/* if the source is supplying this format, then
|
||||
|
Reference in New Issue
Block a user