diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-11 21:29:18 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-13 10:10:34 +0200 |
commit | 9f164e942d0e58cf0c9fe512e6496b307060f38d (patch) | |
tree | 09f27db4826a6591a672306a293365031b0991a9 /include | |
parent | 4469c60ad800a7cb58aca0ebee488a81dbf98fb4 (diff) |
warning C4365: 'argument' : conversion from 'sal_Int32' to 'sal_uInt32'
Change-Id: I2836ce249e57b1129947616f85894afc16b45547
Diffstat (limited to 'include')
-rw-r--r-- | include/osl/file.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osl/file.hxx b/include/osl/file.hxx index 8f7f3b4a9690..e946559531af 100644 --- a/include/osl/file.hxx +++ b/include/osl/file.hxx @@ -1877,7 +1877,7 @@ public: inline static RC create( const ::rtl::OUString& ustrDirectoryURL, - sal_Int32 flags = osl_File_OpenFlag_Read | osl_File_OpenFlag_Write ) + sal_uInt32 flags = osl_File_OpenFlag_Read | osl_File_OpenFlag_Write ) { return static_cast< RC >( osl_createDirectoryWithFlags( ustrDirectoryURL.pData, flags ) ); |