Fix int/sal_Int32 mismatch.

This commit is contained in:
Stephan Bergmann
2012-01-19 10:56:28 +01:00
parent 6796128fbe
commit 75a6a51a9d

View File

@@ -69,7 +69,7 @@ inline static void SwapLong( long& r )
{ r = SWAPLONG(r); }
inline static void SwapULong( sal_uInt32& r )
{ r = SWAPLONG(r); }
inline static void SwapLongInt( int& r )
inline static void SwapLongInt( sal_Int32& r )
{ r = SWAPLONG(r); }
inline static void SwapLongUInt( unsigned int& r )
{ r = SWAPLONG(r); }