Fixed & / | mixup

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6808 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2004-02-29 18:12:29 +00:00
parent f08ccd9586
commit ba25ca5cf0
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ struct translator_data {
status_t (*GetConfigMessage)(BMessage *ioExtension);
};
#define B_TRANSLATION_MAKE_VER(mjr,mnr,rev) ((mjr << 8) & ((mnr << 4) & 0xf0) & (rev & 0x0f))
#define B_TRANSLATION_MAKE_VER(mjr,mnr,rev) ((mjr << 8) | ((mnr << 4) & 0xf0) | (rev & 0x0f))
#define B_TRANSLATION_MAJOR_VER(v) (v >> 8)
#define B_TRANSLATION_MINOR_VER(v) ((v >> 4) & 0xf)
#define B_TRANSLATION_REVSN_VER(v) (v & 0xf)