diff options
author | Thies C. Arntzen <thies@php.net> | 2000-08-04 18:14:38 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-08-04 18:14:38 +0000 |
commit | 7b388964ee2e67c0522954ef878529fa0e88bcd5 (patch) | |
tree | 87537b3a2a44e2bc47f1911460ee05336559d9d8 | |
parent | 5356c100ee9d992c1478d28ec7055f38ea8092b2 (diff) | |
download | php-git-7b388964ee2e67c0522954ef878529fa0e88bcd5.tar.gz |
fixed ZTS compile
-rw-r--r-- | ext/posix/posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 3e0b39bffa..93c56eaac3 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -657,6 +657,7 @@ PHP_FUNCTION(posix_mkfifo) pval *path; pval *mode; int result; + PLS_FETCH(); if (ZEND_NUM_ARGS() != 2 || zend_get_parameters(ht, 2, &path, &mode) == FAILURE) { WRONG_PARAM_COUNT; |