diff options
Diffstat (limited to 'ext/sysvmsg/php_sysvmsg.h')
-rw-r--r-- | ext/sysvmsg/php_sysvmsg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sysvmsg/php_sysvmsg.h b/ext/sysvmsg/php_sysvmsg.h index 033a89cfb6..53ac7fc0ee 100644 --- a/ext/sysvmsg/php_sysvmsg.h +++ b/ext/sysvmsg/php_sysvmsg.h @@ -52,11 +52,11 @@ PHP_FUNCTION(msg_queue_exists); typedef struct { key_t key; - php_int_t id; + zend_long id; } sysvmsg_queue_t; struct php_msgbuf { - php_int_t mtype; + zend_long mtype; char mtext[1]; }; |