1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Merge pull request #1605 from magnumripper/master

Mute another -Wpointer-sign warning.
This commit is contained in:
Jens Steube 2018-06-29 12:37:50 +02:00 committed by GitHub
commit 07b49c17f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2496,7 +2496,7 @@ static int input_tokenizer (u8 *input_buf, int input_len, token_t *token)
{
if (token->attr[token_idx] & TOKEN_ATTR_OPTIONAL_ROUNDS)
{
const int len = rounds_count_length (token->buf[token_idx], len_left);
const int len = rounds_count_length ((char *)token->buf[token_idx], len_left);
token->opt_buf = token->buf[token_idx];