summaryrefslogtreecommitdiff
path: root/TSRM/tsrm_virtual_cwd.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-17 09:27:19 +0000
committerPierre Joye <pajoye@php.net>2010-09-17 09:27:19 +0000
commit83527d16a323416a354df4ddfbd86fc0efa2967e (patch)
tree8c4bd87f498c92675d66c1b489ac0e76c674b426 /TSRM/tsrm_virtual_cwd.h
parent79ee513903fb03a57f2676fb69943b15ff173e91 (diff)
downloadphp-git-83527d16a323416a354df4ddfbd86fc0efa2967e.tar.gz
- drop tsrmls_fetch in tsrm_win32_access
Diffstat (limited to 'TSRM/tsrm_virtual_cwd.h')
-rw-r--r--TSRM/tsrm_virtual_cwd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index 19953c8956..7f743c88f1 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -310,7 +310,7 @@ CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D);
#define VCWD_OPENDIR(pathname) opendir(pathname)
#define VCWD_POPEN(command, type) popen(command, type)
#if defined(TSRM_WIN32)
-#define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode)
+#define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode TSRMLS_CC)
#else
#define VCWD_ACCESS(pathname, mode) access(pathname, mode)
#endif