Replace ../include/wait.h with gdb_wait.h.
[deliverable/binutils-gdb.git] / gdb / bcache.h
index 1350bea66a029bafa0fe073a5c814c91d673ef85..4735af71cd3e393797b8328be770763a453c48b0 100644 (file)
@@ -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 */
This page took 0.023869 seconds and 4 git commands to generate.