summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-04 15:16:23 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-04 15:16:23 +0000
commitd1de1080bc9656d1abe8dea032a5e4881d3ad606 (patch)
tree60f6938c1fc96b0e966fcda37795cbc4e66dd61b /tests
parent12a0579fb6cc5113c9c7b5592429105d60dbe7d6 (diff)
downloadATCD-d1de1080bc9656d1abe8dea032a5e4881d3ad606.tar.gz
Tue Apr 4 15:06:00 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unload_libACE.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/Unload_libACE.cpp b/tests/Unload_libACE.cpp
index e73d5ca1fd2..ac7b8489b5e 100644
--- a/tests/Unload_libACE.cpp
+++ b/tests/Unload_libACE.cpp
@@ -155,9 +155,9 @@ main ( int, char ** )
handle = dlopen ( buf, RTLD_LAZY );
if ( handle == NULL )
{
- // is it because of "No such file or directory" ?
- if ( errno != ENOENT )
- {
+ // is it because of "No such file or directory" ?
+ if ( errno != ENOENT )
+ {
fprintf ( stderr,
"%s@LM_ERROR@ dlopen() returned NULL\n",
time_stamp ( tbuf, BUFSIZ, 'T' ));
@@ -165,13 +165,13 @@ main ( int, char ** )
"%s@LM_ERROR@ dlerror() says: %s\n",
time_stamp ( tbuf, BUFSIZ, 'T' ), dlerror ());
status = 1;
- }
- else
- {
+ }
+ else
+ {
printf ( "%s@LM_DEBUG@ dlopen() did not find %s\n",
time_stamp ( tbuf, BUFSIZ, 'T' ), buf);
status = 0;
- }
+ }
}
else if ( dlclose ( handle ) != 0 )
{