unsigned int -> size_t

This commit is contained in:
leitner
2007-10-17 16:23:01 +00:00
parent 67a8f54b63
commit 34c8462dea
7 changed files with 45 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
#include "str.h"
extern int stralloc_diff(const stralloc* a,const stralloc* b) {
register unsigned int i;
register size_t i;
register int j;
for (i=0;;++i) {
if (i==a->len) return i==b->len?0:-1; if (i==b->len) return 1;