[Libreoffice-commits] .: tools/source

Stephan Bergmann sbergmann at kemper.freedesktop.org
Thu Jan 19 01:58:43 PST 2012


 tools/source/stream/stream.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 75a6a51a9da2aa3b6eb0f0e43c0130844f6ab86c
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Jan 19 10:56:28 2012 +0100

    Fix int/sal_Int32 mismatch.

diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 6064a77..1ebbcb3 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -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);   }


More information about the Libreoffice-commits mailing list