diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2018-06-29 22:44:42 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-06-29 22:44:58 +0200 |
commit | 10b484e624e628e5f2255fab6252fc338ff114ad (patch) | |
tree | 40d682a69bd3ba2a6456b93dba1ce7ffa5afd646 | |
parent | 7a6dc2960577d8165867db3d5a5ceb16421c1fb3 (diff) | |
download | php-git-10b484e624e628e5f2255fab6252fc338ff114ad.tar.gz |
Fix build
These were changed in 6e77a60a75445c863f85f81a83e5c2dd28f0e877.
-rw-r--r-- | Zend/zend_API.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 3810566a65..b9fdb76cc4 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -211,8 +211,8 @@ typedef struct _zend_fcall_info_cache { class_container.__unset = NULL; \ class_container.__isset = NULL; \ class_container.__debugInfo = NULL; \ - class_container.serialize = NULL; \ - class_container.unserialize = NULL; \ + class_container.serialize_func = NULL; \ + class_container.unserialize_func = NULL; \ class_container.parent = NULL; \ class_container.num_interfaces = 0; \ class_container.traits = NULL; \ |