Change count test for non-zero reference counts to check for ... non-zero.

This commit is contained in:
Randy Kunkee 2000-04-26 09:24:58 +00:00
parent 75467fb340
commit e5de6c5b0c

View File

@ -378,7 +378,7 @@ Rq_getcount(
for ( re = rq->rq_gethead( rq ); re != NULL;
re = rq->rq_getnext( re )) {
if ( type == RQ_COUNT_NZRC ) {
if ( re->re_getrefcnt( re ) > 1 ) {
if ( re->re_getrefcnt( re ) > 0 ) {
count++;
}
}