- fixed a warning in WildMidi code.

This commit is contained in:
Christoph Oelckers 2016-01-11 23:46:12 +01:00
parent cd9e18a72b
commit 61e48013dc
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ static inline int wm_isdigit(int c) {
#define TOKEN_CNT_INC 8
static char** WM_LC_Tokenize_Line(char *line_data)
{
int line_length = strlen(line_data);
int line_length = (int)strlen(line_data);
int token_data_length = 0;
int line_ofs = 0;
int token_start = 0;