summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-19 10:56:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-19 10:58:32 +0100
commit75a6a51a9da2aa3b6eb0f0e43c0130844f6ab86c (patch)
tree27cc6799d1a4bc8f95af134cb1b96157b8844af4 /tools
parent6796128fbeea7b2cd71e99123bf86b56c23efd18 (diff)
Fix int/sal_Int32 mismatch.
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/stream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 6064a77ed9e9..1ebbcb3dd161 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); }