summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-31 08:45:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-31 08:45:46 +0100
commit23e8cfdb903f515bbd80be83c670e3ff2334f61d (patch)
treeb74410a1751ab707d69c8d361a33f40eb6ee6ab8 /sot
parent2525c93e08f9b6256c298171a792add6b7fa0c29 (diff)
SWAPLONG -> OSL_SWAPDWORD
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgcache.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/source/sdstor/stgcache.hxx b/sot/source/sdstor/stgcache.hxx
index 1c0ad82b67e6..d54563189629 100644
--- a/sot/source/sdstor/stgcache.hxx
+++ b/sot/source/sdstor/stgcache.hxx
@@ -117,7 +117,7 @@ public:
return -1;
sal_Int32 n = ((sal_Int32*) pData )[ nOff ];
#ifdef OSL_BIGENDIAN
- return SWAPLONG(n);
+ return OSL_SWAPDWORD(n);
#else
return n;
#endif