commit | 177e2b012723ef65c6c7f850df3e6e0cd2cca2b4 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jul 15 00:36:31 2008 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Jul 16 10:30:44 2008 +0200 |
tree | 510b202f3d51e92141afa61d4e7bd646d831101b | |
parent | ec6c5df018c2365b7c11a40e183642c3016ef850 [diff] |
[CLEANUP] remove dependency on obsolete INTBITS macro The INTBITS macro was found to be already defined on some platforms, and to equal 32 (while INTBITS was 5 here). Due to pure luck, there was no declaration conflict, but it's nonetheless a problem to fix. Looking at the code showed that this macro was only used for left shifts and nothing else anymore. So the replacement is obvious. The new macro, BITS_PER_INT is more obviously correct.