Merge pull request #2188 from neheb/cast

Add casts where needed in C++ mode
This commit is contained in:
Jens Steube
2019-11-05 12:28:21 +01:00
committed by GitHub
12 changed files with 161 additions and 159 deletions
+1 -1
View File
@@ -1015,7 +1015,7 @@ static int rounds_count_length (const char *input_buf, const int input_len)
if (memcmp (input_buf, rounds, 7) == 0)
{
char *next_pos = strchr (input_buf + 8, '$');
const char *next_pos = strchr (input_buf + 8, '$');
if (next_pos == NULL) return -1;