aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-14 03:19:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-14 03:19:47 +0000
commit3fa1684c2d449f2c7c94e170a5900af94d874a5e (patch)
treeed50fb2d8184e9478e22427e668cd9d093363f2d /build_tools
parentd33b190de5333c402192a2641625661ab712afe1 (diff)
make the compiler's life easier. Thanks Kevin :)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@34022 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools')
-rw-r--r--build_tools/menuselect.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/build_tools/menuselect.h b/build_tools/menuselect.h
index d3dceef52..9dae77ac6 100644
--- a/build_tools/menuselect.h
+++ b/build_tools/menuselect.h
@@ -53,11 +53,11 @@ struct member {
/*! Default setting */
const char *defaultenabled;
/*! This module is currently selected */
- int enabled:1;
+ unsigned int enabled:1;
/*! This module has failed dependencies */
- int depsfailed:1;
+ unsigned int depsfailed:1;
/*! This module has failed conflicts */
- int conflictsfailed:1;
+ unsigned int conflictsfailed:1;
/*! dependencies of this module */
AST_LIST_HEAD_NOLOCK(, depend) deps;
/*! conflicts of this module */
@@ -72,9 +72,9 @@ struct category {
/*! the name displayed in the menu */
const char *displayname;
/*! Display what is selected, as opposed to not selected */
- int positive_output:1;
+ unsigned int positive_output:1;
/*! Force a clean of the source tree if anything in this category changes */
- int force_clean_on_change:1;
+ unsigned int force_clean_on_change:1;
/*! the list of possible values to be set in this variable */
AST_LIST_HEAD_NOLOCK(, member) members;
/*! for linking */