diff options
author | Ping Liao <pliao@openoffice.org> | 2001-05-15 19:07:25 +0000 |
---|---|---|
committer | Ping Liao <pliao@openoffice.org> | 2001-05-15 19:07:25 +0000 |
commit | 2b80218a16e4e7a9ea04c33aa8b63cca82f7b033 (patch) | |
tree | 7d9abbc750de4c453b84cb1ca753bccc88aee083 /sal | |
parent | c49c903f3b56d0aa4bcf434bc3d68cb01c120ef4 (diff) |
Added a fprintf within the DEBUG block right after the dlsym call.
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/module.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sal/osl/unx/module.c b/sal/osl/unx/module.c index 5b9364880ec6..de80de0a71a3 100644 --- a/sal/osl/unx/module.c +++ b/sal/osl/unx/module.c @@ -2,9 +2,9 @@ * * $RCSfile: module.c,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: obr $ $Date: 2001-05-11 19:20:10 $ + * last change: $Author: pliao $ $Date: 2001-05-15 20:07:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -426,6 +426,8 @@ void* SAL_CALL osl_psz_getSymbol(oslModule hModule, const sal_Char* pszSymbolNam if( ! pSym ) fprintf( stderr, "osl_getsymbol: cannot get Symbol %s for reason: %s\n", pszSymbolName, dlerror() ); + else + fprintf( stderr, "osl_getsymbol: got Symbol %s \n", pszSymbolName); #endif return pSym; |