This commit is contained in:
John Cupitt 2008-03-07 22:57:37 +00:00
parent 25122b7600
commit a4c8258317
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
7/3/08 started 7.15.0
- MAGIC numbers should be unsigned
25/1/08 started 7.14.0
- bump all version numbers for new stable
- better CMYK JPEG read (thanks Ole)

View File

@ -93,8 +93,8 @@ extern "C" {
* intel order: byte 0 = b6
* SPARC order: byte 0 = 08
*/
#define IM_MAGIC_INTEL (0xb6a6f208)
#define IM_MAGIC_SPARC (0x08f2a6b6)
#define IM_MAGIC_INTEL (0xb6a6f208U)
#define IM_MAGIC_SPARC (0x08f2a6b6U)
/* Private to iofuncs: the image size above which we switch from
* mmap()-whole-image behaviour to mmap()-window, plus window margins.