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:
Mark Spencer
2005-01-08 19:00:46 +00:00
parent 17acbf1e38
commit 87c9e1db33
4 changed files with 68 additions and 15 deletions

View File

@@ -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;