mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
make the compiler's life easier. Thanks Kevin :)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34022 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -53,11 +53,11 @@ struct member {
|
|||||||
/*! Default setting */
|
/*! Default setting */
|
||||||
const char *defaultenabled;
|
const char *defaultenabled;
|
||||||
/*! This module is currently selected */
|
/*! This module is currently selected */
|
||||||
int enabled:1;
|
unsigned int enabled:1;
|
||||||
/*! This module has failed dependencies */
|
/*! This module has failed dependencies */
|
||||||
int depsfailed:1;
|
unsigned int depsfailed:1;
|
||||||
/*! This module has failed conflicts */
|
/*! This module has failed conflicts */
|
||||||
int conflictsfailed:1;
|
unsigned int conflictsfailed:1;
|
||||||
/*! dependencies of this module */
|
/*! dependencies of this module */
|
||||||
AST_LIST_HEAD_NOLOCK(, depend) deps;
|
AST_LIST_HEAD_NOLOCK(, depend) deps;
|
||||||
/*! conflicts of this module */
|
/*! conflicts of this module */
|
||||||
@@ -72,9 +72,9 @@ struct category {
|
|||||||
/*! the name displayed in the menu */
|
/*! the name displayed in the menu */
|
||||||
const char *displayname;
|
const char *displayname;
|
||||||
/*! Display what is selected, as opposed to not selected */
|
/*! 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 */
|
/*! 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 */
|
/*! the list of possible values to be set in this variable */
|
||||||
AST_LIST_HEAD_NOLOCK(, member) members;
|
AST_LIST_HEAD_NOLOCK(, member) members;
|
||||||
/*! for linking */
|
/*! for linking */
|
||||||
|
Reference in New Issue
Block a user