remove gcc4-only warning option

This commit is contained in:
leitner
2005-05-03 12:14:29 +00:00
parent 05bf627d01
commit 9405f1271b
3 changed files with 7 additions and 7 deletions

View File

@@ -25,6 +25,6 @@ void* array_get(array* x,uint64 membersize,int64 pos) {
if (__unlikely(pos+1<1)) return 0;
if (__unlikely(!umult64(membersize,pos,&wanted))) return 0;
if (__unlikely(wanted >= x->allocated)) return 0;
if (__unlikely((int64)wanted >= x->allocated)) return 0;
return x->p+pos*membersize;
}