Skip to content

Commit f261706

Browse files
committed
Merge pull request zeromq#170 from remicollet/patch-1
Fix build with old GCC
2 parents 4699540 + 7c96150 commit f261706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zmq_pollset.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
/* {{{ typedef struct _php_zmq_pollset
4040
*/
41-
typedef struct _php_zmq_pollset {
41+
struct _php_zmq_pollset {
4242

4343
zmq_pollitem_t *items;
4444
zend_string **keys;
@@ -49,7 +49,7 @@ typedef struct _php_zmq_pollset {
4949
size_t alloc_size;
5050

5151
zval errors;
52-
} php_zmq_pollset;
52+
};
5353
/* }}} */
5454

5555
static

0 commit comments

Comments
 (0)