X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Ffixnump.h;h=b3aadb7061442658ab305320ec2216b9d6d79849;hb=04c502ea9374372b1cd5d350aa95af4829fbae22;hp=cb56fe060743fd54a40fc2d7558443f5d7f9a0a7;hpb=a608f5895479f67690a819a781cdb75641b13c61;p=sbcl.git diff --git a/src/runtime/fixnump.h b/src/runtime/fixnump.h index cb56fe0..b3aadb7 100644 --- a/src/runtime/fixnump.h +++ b/src/runtime/fixnump.h @@ -13,10 +13,10 @@ #define _FIXNUMP_H static inline int fixnump(lispobj obj) { - return((obj & - (LOWTAG_MASK & - (~(EVEN_FIXNUM_LOWTAG|ODD_FIXNUM_LOWTAG)))) - == 0); + return((obj & + (LOWTAG_MASK & + (~(EVEN_FIXNUM_LOWTAG|ODD_FIXNUM_LOWTAG)))) + == 0); } #endif