aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-08 19:00:46 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-08 19:00:46 +0000
commit9e647d8ca0928abe9680b8e83affe98f68443a3b (patch)
tree18b6a4db8afcab79d414fcac8acc0eebddb2ed2a /include/asterisk/channel.h
parentd60e4d83c2157c8e10466a721bbdd069aee51fca (diff)
Warn if flags is signed instead of unsigned (bug #3279)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4713 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/channel.h')
-rwxr-xr-xinclude/asterisk/channel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 765e7ff4d..2bd38b217 100755
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -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;