mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-09 06:28:14 +00:00
Warn if flags is signed instead of unsigned (bug #3279)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4713 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -218,7 +218,7 @@ struct ast_channel {
|
||||
unsigned int pickupgroup;
|
||||
|
||||
/*! channel flags of AST_FLAG_ type */
|
||||
int flags;
|
||||
unsigned int flags;
|
||||
|
||||
/*! For easy linking */
|
||||
struct ast_channel *next;
|
||||
@@ -251,7 +251,7 @@ struct ast_bridge_config {
|
||||
char *end_sound;
|
||||
char *start_sound;
|
||||
int firstpass;
|
||||
int flags;
|
||||
unsigned int flags;
|
||||
};
|
||||
|
||||
struct chanmon;
|
||||
|
Reference in New Issue
Block a user