1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00

Remove extraneous debug dlerror() call which results in the subsequent

dlerror() returning NULL.
This commit is contained in:
Andrey Hristov
1999-09-08 19:36:18 +00:00
parent afecff3aa4
commit 42e39d474b

View File

@@ -114,7 +114,6 @@ void php3_dl(pval *file,int type,pval *return_value)
#if MSVC5
php_error(error_type,"Unable to load dynamic library '%s'<br>\n%s",libpath,php3_win_err());
#else
printf("dlerror = %s\n", dlerror());
php_error(error_type,"Unable to load dynamic library '%s' - %s",libpath,dlerror());
#endif
RETURN_FALSE;