mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
- fix overflow; improve documentation while at it
This commit is contained in:
parent
cd9d4c85a4
commit
db508e3b82
@ -28,11 +28,11 @@ struct dep_t { /* one-way list of dependency rules */
|
|||||||
char * m_path; /* the module file path */
|
char * m_path; /* the module file path */
|
||||||
struct mod_opt_t * m_options; /* the module options */
|
struct mod_opt_t * m_options; /* the module options */
|
||||||
|
|
||||||
int m_isalias : 1; /* the module is an alias */
|
unsigned int m_isalias :1; /* the module is an alias */
|
||||||
int m_isblacklisted : 1;
|
unsigned int m_isblacklisted:1; /* the module is blacklisted */
|
||||||
int m_reserved : 14; /* stuffin' */
|
unsigned int m_reserved :14; /* stuffin' */
|
||||||
|
|
||||||
int m_depcnt : 16; /* the number of dependable module(s) */
|
unsigned int m_depcnt :16; /* the number of dependable module(s) */
|
||||||
char ** m_deparr; /* the list of dependable module(s) */
|
char ** m_deparr; /* the list of dependable module(s) */
|
||||||
|
|
||||||
struct dep_t * m_next; /* the next dependency rule */
|
struct dep_t * m_next; /* the next dependency rule */
|
||||||
|
Loading…
Reference in New Issue
Block a user