diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 22:34:04 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 22:34:04 +0000 |
commit | 396bccfb1d686ee76f3718019f42d4841e36ae9d (patch) | |
tree | 557b2ff71c00370f55866afe33cf72aa568f90c6 /ext/standard/dl.c | |
parent | 878ed4934c54ff26e763ebc1544c9c079ea1a16a (diff) | |
download | php-git-396bccfb1d686ee76f3718019f42d4841e36ae9d.tar.gz |
More php3_ cleanup
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 |