From c39a3bc880e4d57728ffaa4cbe095bcd535d0e3c Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Tue, 11 Jun 2002 09:36:48 +0000 Subject: [PATCH] macro definition fixed, guess it was the usual kind of cut&past bug? --- main/php_streams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/php_streams.h b/main/php_streams.h index e46dc5db35..d50b8135c4 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -265,7 +265,7 @@ PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_D #define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb) TSRMLS_CC) PHPAPI int _php_stream_stat_path(char *path, php_stream_statbuf *ssb TSRMLS_DC); -#define php_stream_stat_path(path, ssb) _php_stream_stat((path), (ssb) TSRMLS_CC) +#define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), (ssb) TSRMLS_CC) PHPAPI php_stream *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS_DC TSRMLS_DC); #define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC TSRMLS_CC) -- 2.40.0