]> granicus.if.org Git - php/commitdiff
Remove extraneous debug dlerror() call which results in the subsequent
authorAndrey Hristov <andrey@php.net>
Wed, 8 Sep 1999 19:36:18 +0000 (19:36 +0000)
committerAndrey Hristov <andrey@php.net>
Wed, 8 Sep 1999 19:36:18 +0000 (19:36 +0000)
dlerror() returning NULL.

ext/standard/dl.c

index 6fef6ec045f733cf4d9c35f8ed17e4bfedb5195d..3920cd449352cacf9e7f231b71e5c716a23d08aa 100644 (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;