Browse Source

fix compile warning

PHP-5
foobar 24 years ago
parent
commit
6ed8720fa2
  1. 2
      ext/mhash/mhash.c
  2. 2
      ext/mhash/php_mhash.h

2
ext/mhash/mhash.c

@ -59,7 +59,7 @@ ZEND_GET_MODULE(mhash)
/* SALTED S2K uses a fixed salt */
#define SALT_SIZE 8
static PHP_MINIT_FUNCTION(mhash)
PHP_MINIT_FUNCTION(mhash)
{
int i, n, l;
char *name;

2
ext/mhash/php_mhash.h

@ -12,7 +12,7 @@
extern zend_module_entry mhash_module_entry;
#define mhash_module_ptr &mhash_module_entry
static PHP_MINIT_FUNCTION(mhash);
PHP_MINIT_FUNCTION(mhash);
PHP_MINFO_FUNCTION(mhash);
PHP_FUNCTION(mhash_get_block_size);
PHP_FUNCTION(mhash_get_hash_name);

Loading…
Cancel
Save