summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2008-08-06 00:10:43 +0000
committerKen Raeburn <raeburn@mit.edu>2008-08-06 00:10:43 +0000
commit45b9d1c277be779b256f78acfd9bde9a8b036604 (patch)
tree1beaf4ac1c6420be72bb0f8f6c939bf6d7eaa185 /src
parent34f627f9858cd944d2f1f04eac15bae011d55fe0 (diff)
downloadkrb5-45b9d1c277be779b256f78acfd9bde9a8b036604.tar.gz
krb5-45b9d1c277be779b256f78acfd9bde9a8b036604.tar.xz
krb5-45b9d1c277be779b256f78acfd9bde9a8b036604.zip
Always use unsigned for one-bit fields
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20609 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/prof_tree.c4
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;