Skip to content

Commit 85f6c30

Browse files
committed
fix MSVC warning
1 parent da705a1 commit 85f6c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/php_random_class.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ extern PHPAPI zend_class_entry *php_ce_random;
2626
typedef struct _php_random_class_algo {
2727
const char* ident;
2828
const unsigned char bytes;
29-
const size_t state_size;
29+
const size_t state_size;
3030
uint64_t (*next)(void *state);
31-
void* (*init)(void);
31+
void* (*init)();
3232
void (*seed)(void *state, const zend_long seed);
3333
int (*serialize)(void *state, zval *return_value);
3434
int (*unserialize)(void *state, HashTable *data);

0 commit comments

Comments
 (0)