File difference report generated by CSDiff by ComponentSoftware on 26/12/2010 09:42

Base file: D:\dev2\BugList\200909\psd\libpsd-0.9\psd_stream.h
Compared file: D:\dev2\BugList\200909\psd\libpsd\psd_stream.h

11,12c11,12
< #define PSD_CHAR_TO_SHORT(str)			((*(str) << 8) | *((str) + 1))
< #define PSD_CHAR_TO_INT(str)			((*(str) << 24) | (*((str) + 1) << 16) | (*((str) + 2) << 8) | *((str) + 3))
---
> #define PSD_CHAR_TO_SHORT(str)			(short)((*(str) << 8) | *((str) + 1))
> #define PSD_CHAR_TO_INT(str)			(int)((*(str) << 24) | (*((str) + 1) << 16) | (*((str) + 2) << 8) | *((str) + 3))


<---------------------  End of report  --------------------->

