From: Hartmut Holzgraefe Date: Tue, 11 Jun 2002 09:36:48 +0000 (+0000) Subject: macro definition fixed, guess it was the usual kind of cut&past bug? X-Git-Tag: php5_5_0~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c39a3bc880e4d57728ffaa4cbe095bcd535d0e3c;p=php macro definition fixed, guess it was the usual kind of cut&past bug? --- 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)