diff options
Diffstat (limited to 'ext/sysvmsg/php_sysvmsg.h')
-rw-r--r-- | ext/sysvmsg/php_sysvmsg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sysvmsg/php_sysvmsg.h b/ext/sysvmsg/php_sysvmsg.h index 033a89cfb6..139d37fe38 100644 --- a/ext/sysvmsg/php_sysvmsg.h +++ b/ext/sysvmsg/php_sysvmsg.h @@ -1,6 +1,6 @@ /* +----------------------------------------------------------------------+ - | PHP Version 5 | + | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2014 The PHP Group | +----------------------------------------------------------------------+ @@ -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]; }; |