summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx b/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx
index 76fc42927777..b53c56410c3f 100644
--- a/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx
+++ b/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx
@@ -127,14 +127,14 @@ long FileStream::stell ()
{
if (file)
return ftell(file);
- return -1L;
+ return -1;
}
long FileStream::sseek (long offset, int origin)
{
if (file)
return fseek(file, offset, origin);
- return -1L;
+ return -1;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */