diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/profile/prof_tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/profile/prof_tree.c b/src/util/profile/prof_tree.c index 2ea02a547..a99306afd 100644 --- a/src/util/profile/prof_tree.c +++ b/src/util/profile/prof_tree.c @@ -32,8 +32,8 @@ struct profile_node { char *name; char *value; int group_level; - int final:1; /* Indicate don't search next file */ - int deleted:1; + unsigned int final:1; /* Indicate don't search next file */ + unsigned int deleted:1; struct profile_node *first_child; struct profile_node *parent; struct profile_node *next, *prev; |
