diff options
author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-10 20:38:35 (GMT) |
---|---|---|
committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-10 20:38:35 (GMT) |
commit | 7763163e4b25d71d7c7ada0a488af7015f9b526b (patch) | |
tree | fcba2fe17f4c76570f2e8c5e5ef9c37bae2b7f3c /Source/kwsys/testDynamicLoader.cxx | |
parent | aaa780d6a14ad4175c27a390f569adda43da5a11 (diff) | |
download | CMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.zip CMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.tar.gz CMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.tar.bz2 |
BUG: Do the proper path
Diffstat (limited to 'Source/kwsys/testDynamicLoader.cxx')
-rw-r--r-- | Source/kwsys/testDynamicLoader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testDynamicLoader.cxx b/Source/kwsys/testDynamicLoader.cxx index 15fd742..ab67383 100644 --- a/Source/kwsys/testDynamicLoader.cxx +++ b/Source/kwsys/testDynamicLoader.cxx @@ -51,7 +51,7 @@ kwsys_stl::string GetLibName(const char* lname) */ int TestDynamicLoader(const char* libname, const char* symbol, int r1, int r2, int r3) { - //kwsys_ios::cerr << "Testing: " << libname << kwsys_ios::endl; + kwsys_ios::cerr << "Testing: " << libname << kwsys_ios::endl; kwsys::LibHandle l = kwsys::DynamicLoader::OpenLibrary(libname); // If result is incompatible with expectation just fails (xor): if( (r1 && !l) || (!r1 && l) ) |