diff options
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r-- | ext/standard/dl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c index 7e0e4e1f40..8aa0c23d3c 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -113,7 +113,7 @@ void php_dl(pval *file,int type,pval *return_value) error_type = E_CORE_ERROR; } #if MSVC5 - php_error(error_type,"Unable to load dynamic library '%s'<br>\n%s",libpath,php3_win_err()); + php_error(error_type,"Unable to load dynamic library '%s'<br>\n%s",libpath,php_win_err()); #else php_error(error_type,"Unable to load dynamic library '%s' - %s",libpath,dlerror()); #endif |