diff options
Diffstat (limited to 'gdb/bcache.h')
-rw-r--r-- | gdb/bcache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/bcache.h b/gdb/bcache.h index 1350bea6..4735af7 100644 --- a/gdb/bcache.h +++ b/gdb/bcache.h @@ -95,14 +95,14 @@ struct bcache { struct obstack cache; /* How many hash buckets we're using. */ - int num_buckets; + unsigned int num_buckets; /* Hash buckets. This table is allocated using malloc, so when we grow the table we can return the old table to the system. */ struct bstring **bucket; /* Statistics. */ - long unique_count; /* number of unique strings */ + unsigned long unique_count; /* number of unique strings */ long total_count; /* total number of strings cached, including dups */ long unique_size; /* size of unique strings, in bytes */ long total_size; /* total number of bytes cached, including dups */ |