X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbitvector.h;h=70112506b30c9e23cbff571cc49f674cde9355f1;hb=4f8599928787c4b9da99caff29b27724c2e3298d;hp=6c3a878b16cebfad3a8d5d213adf1ae572dc8057;hpb=4944c86a9318bc5b5578ab145a95c116ffd2c9fd;p=pspp diff --git a/src/bitvector.h b/src/bitvector.h index 6c3a878b16..70112506b3 100644 --- a/src/bitvector.h +++ b/src/bitvector.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !bitvector_h #define bitvector_h 1 @@ -39,7 +39,6 @@ (((unsigned char *) X)[(Y) / CHAR_BIT] & (1 << ((Y) % CHAR_BIT))) /* Returns 2**X, 0 <= X < 32. */ -#define BIT_INDEX(X) \ - (1ul << (X)) +#define BIT_INDEX(X) (1ul << (X)) #endif /* bitvector.h */