summaryrefslogtreecommitdiff
path: root/tools/source/fsys/dirent.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-21 17:57:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-21 17:57:10 +0100
commitf433d5a9b8379f5207df92d80ce7dede9d9795d8 (patch)
treea704e35a4dcd4fcb4e40881deba7b08317a72aae /tools/source/fsys/dirent.cxx
parentc76d098cd840c3bf830f04aecc879521b844098d (diff)
Fix Windows.
Diffstat (limited to 'tools/source/fsys/dirent.cxx')
-rw-r--r--tools/source/fsys/dirent.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx
index df3f16392a01..a0d3d8ec96ba 100644
--- a/tools/source/fsys/dirent.cxx
+++ b/tools/source/fsys/dirent.cxx
@@ -1529,9 +1529,9 @@ DirEntry DirEntry::GetDevice() const
if ( ( pTop->eFlag == FSYS_FLAG_ABSROOT || pTop->eFlag == FSYS_FLAG_RELROOT ) &&
!pTop->aName.isEmpty() )
- return DirEntry( pTop->aName, FSYS_FLAG_VOLUME, FSYS_STYLE_HOST );
+ return DirEntry( pTop->aName, FSYS_FLAG_VOLUME );
else
- return DirEntry( rtl::OString(), FSYS_FLAG_INVALID, FSYS_STYLE_HOST );
+ return DirEntry( rtl::OString(), FSYS_FLAG_INVALID );
}
#endif