mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 23:32:02 +00:00
- fixed a warning in WildMidi code.
This commit is contained in:
parent
cd9e18a72b
commit
61e48013dc
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue