COMMON: Use correct MKTAG definition, stupid

This commit is contained in:
Max Horn 2011-04-12 17:04:49 +02:00
parent 0ce2ca4e00
commit 58b4cc0220

View File

@ -147,7 +147,7 @@
* be used for character constants. Hence if one uses multi-byte character
* constants, a potential portability problem opens up.
*/
#define MKTAG(a0,a1,a2,a3) ((a0) | ((a1) << 8) | ((a2) << 16) | ((a3) << 24))
#define MKTAG(a0,a1,a2,a3) ((a3) | ((a2) << 8) | ((a1) << 16) | ((a0) << 24))
// Functions for reading/writing native Integers,
// this transparently handles the need for alignment