From: Marcus Boerger Date: Wed, 13 Nov 2002 16:30:50 +0000 (+0000) Subject: must be unsigned X-Git-Tag: php-4.3.0RC1~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=244d5d1c113980c50800015ee2b9e04ce719bc60;p=php must be unsigned # maybe i will change this to size_t for 64bit systems but i do not have the # time now and i have problems building php on a sun. --- diff --git a/ext/dba/libcdb/cdb.c b/ext/dba/libcdb/cdb.c index df0375354a..7857fa20b0 100644 --- a/ext/dba/libcdb/cdb.c +++ b/ext/dba/libcdb/cdb.c @@ -46,7 +46,7 @@ static int cdb_match(struct cdb *c, char *key, unsigned int len, uint32 pos TSRMLS_DC) { char buf[32]; - int n; + unsigned int n; while (len > 0) { n = sizeof(buf);