summaryrefslogtreecommitdiff
path: root/ext/hash/hash.c
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2014-05-15 11:36:40 +0200
committerPierre Joye <pierre.php@gmail.com>2014-05-15 11:36:40 +0200
commit5fa4e047b0635a2bd754c9d8b8c9b871776e7e96 (patch)
treef5018cd19cce73b78ff94f6d9110e45e448f32b6 /ext/hash/hash.c
parentd5e6789439fc431d2c9358d9c9aa3a3d8bc0ddf0 (diff)
downloadphp-git-5fa4e047b0635a2bd754c9d8b8c9b871776e7e96.tar.gz
unused var
Diffstat (limited to 'ext/hash/hash.c')
-rw-r--r--ext/hash/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/hash.c b/ext/hash/hash.c
index 63167b8d51..fe02cbe83f 100644
--- a/ext/hash/hash.c
+++ b/ext/hash/hash.c
@@ -603,7 +603,7 @@ PHP_FUNCTION(hash_pbkdf2)
char *algo, *salt, *pass = NULL;
unsigned char *computed_salt, *digest, *temp, *result, *K1, *K2 = NULL;
long loops, i, j, algo_len, pass_len, iterations, length = 0, digest_length = 0;
- int argc, salt_len = 0;
+ int salt_len = 0;
zend_bool raw_output = 0;
const php_hash_ops *ops;
void *context;