diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-27 08:28:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:35 +0100 |
commit | 3a5ad6fd368794aeb0d1713e1a7718d6a9885f8c (patch) | |
tree | 7815fc087c1a2c412a901aa8f21227edbce4df82 /sal/qa | |
parent | 945c08e35e1d1416e438bc000bee0f1191f1f694 (diff) |
Apparently missing "== nError1"
Change-Id: I9096e00db4c94b318406b022f675bb866f568d7e
Diffstat (limited to 'sal/qa')
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index 5502cc6c0ee0..2d9192f333bb 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -5260,7 +5260,7 @@ namespace osl_Directory } CPPUNIT_ASSERT_MESSAGE( "test for open function: open a file instead of a directory", - ( ::osl::FileBase::E_NOTDIR == nError1 ) || ( ::osl::FileBase::E_ACCES ) ); + ( ::osl::FileBase::E_NOTDIR == nError1 ) || ( ::osl::FileBase::E_ACCES == nError1 ) ); } CPPUNIT_TEST_SUITE( open ); |