fix compiler warning

db4
Doug Coleman 2009-10-15 21:42:01 -05:00
parent 66d81e5c32
commit 4c2cdb18b5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ cell old_space::next_object_after(factor_vm *myvm, cell scan)
if(scan + size < here) if(scan + size < here)
return scan + size; return scan + size;
else else
return NULL; return 0;
} }
} }