Mercurial > hg > xemacs-beta
diff src/alloc.c @ 460:223736d75acb r21-2-45
Import from CVS: tag r21-2-45
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:43:24 +0200 |
parents | c33ae14dd6d0 |
children | e9a3f8b4de53 |
line wrap: on
line diff
--- a/src/alloc.c Mon Aug 13 11:42:27 2007 +0200 +++ b/src/alloc.c Mon Aug 13 11:43:24 2007 +0200 @@ -1315,7 +1315,7 @@ Lisp_Object make_bit_vector_from_byte_vector (unsigned char *bytevec, size_t length) { - int i; + size_t i; Lisp_Bit_Vector *p = make_bit_vector_internal (length); for (i = 0; i < length; i++) @@ -3533,7 +3533,7 @@ ()) { Lisp_Object pl = Qnil; - int i; + unsigned int i; int gc_count_vector_total_size = 0; garbage_collect_1 (); @@ -3548,7 +3548,7 @@ const char *name = lrecord_implementations_table[i]->name; int len = strlen (name); /* save this for the FSFmacs-compatible part of the summary */ - if (i == lrecord_vector.lrecord_type_index) + if (i == lrecord_type_vector) gc_count_vector_total_size = lcrecord_stats[i].bytes_in_use + lcrecord_stats[i].bytes_freed;