Fix PHP 7.4: ulong -> unsigned long 8/head
authorJan-E <github@ehrhardt.nl>
Thu, 24 Oct 2019 10:07:26 +0000 (12:07 +0200)
committerJan-E <github@ehrhardt.nl>
Thu, 24 Oct 2019 10:07:26 +0000 (12:07 +0200)
src/php_raphf_api.c
src/php_raphf_api.h

index b256e4714d3b08739e120e33c3441b1097f31825..004fd667dc233286d1b2de8f810215eb97755a5f 100644 (file)
@@ -24,7 +24,7 @@
 #endif
 
 struct php_persistent_handle_globals {
-       ulong limit;
+       unsigned long limit;
        HashTable hash;
 };
 
index e9f0581abf9e65dd851f1cf43b7de78c5d4c2b7d..b8b445842ecff1a060c7fa35cdaa3a8d4aec5031 100644 (file)
@@ -150,7 +150,7 @@ typedef struct php_persistent_handle_list {
        /** Storage of free resources */
        HashTable free;
        /** Count of acquired resources */
-       ulong used;
+       unsigned long used;
 } php_persistent_handle_list_t;
 
 /**