Skip to content

Commit 748a416

Browse files
committed
Fix ext/sysvmsg
1 parent fee0948 commit 748a416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/sysvmsg/sysvmsg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ PHP_MINFO_FUNCTION(sysvmsg);
3434

3535
typedef struct {
3636
key_t key;
37-
zend_long id;
37+
int id;
3838
zend_object std;
3939
} sysvmsg_queue_t;
4040

4141
struct php_msgbuf {
42-
zend_long mtype;
42+
size_t mtype;
4343
char mtext[1];
4444
};
4545

0 commit comments

Comments
 (0)