diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-11 10:26:28 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-11 15:22:08 +0000 |
commit | 0cdfb1a2bb25d0e4b376875affed1d0621111d6b (patch) | |
tree | ec26cd580369c83892d4e7e4baecfc89ff273c6c | |
parent | 0a272329f3cd82f75d860cff4e851c8e009a5109 (diff) |
readLE32 should return a 32bit number, yikes!
Change-Id: Ibf260ab97cc397b72d81ad4cc08f43d8d2128cef
-rw-r--r-- | vcl/unx/generic/dtrans/bmp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/dtrans/bmp.cxx b/vcl/unx/generic/dtrans/bmp.cxx index 7420b7fc2e0a..9109f45cc567 100644 --- a/vcl/unx/generic/dtrans/bmp.cxx +++ b/vcl/unx/generic/dtrans/bmp.cxx @@ -57,7 +57,7 @@ inline sal_uInt16 readLE16( const sal_uInt8* pBuffer ) return (((sal_uInt16)pBuffer[1]) << 8 ) | pBuffer[0]; } -inline sal_uInt16 readLE32( const sal_uInt8* pBuffer ) +inline sal_uInt32 readLE32( const sal_uInt8* pBuffer ) { return (((sal_uInt32)pBuffer[3]) << 24 ) | |