diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-03-18 00:08:50 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-03-18 00:08:50 +0400 |
commit | 53a63dbd7d7c331e93973332594cdda554da7608 (patch) | |
tree | 631ff8c800339703c26a1334cc0677c622ac6a37 /main/streams/php_stream_context.h | |
parent | aa5f55306b4bd630e9304e9a8d1ea10cf4121f78 (diff) | |
download | php-git-53a63dbd7d7c331e93973332594cdda554da7608.tar.gz |
Fixed stream notifier
Diffstat (limited to 'main/streams/php_stream_context.h')
-rw-r--r-- | main/streams/php_stream_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/php_stream_context.h b/main/streams/php_stream_context.h index 22c914ce28..bdfba8f60f 100644 --- a/main/streams/php_stream_context.h +++ b/main/streams/php_stream_context.h @@ -45,7 +45,7 @@ typedef struct _php_stream_notifier php_stream_notifier; struct _php_stream_notifier { php_stream_notification_func func; void (*dtor)(php_stream_notifier *notifier); - void *ptr; + zval ptr; int mask; size_t progress, progress_max; /* position for progress notification */ }; |