remove a warning in WIN32 build
This commit is contained in:
parent
56a3c9566d
commit
3a29a653ca
@ -495,7 +495,7 @@ static void Read_dir_callback(void * pdata, const char *file_name, const word *u
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
pos_last_dot++;
|
pos_last_dot++;
|
||||||
for (i = 0; i < sizeof(long_ext) - 1; i++)
|
for (i = 0; i < (int)sizeof(long_ext) - 1; i++)
|
||||||
long_ext[i] = (unicode_name[pos_last_dot + i] < 256) ? unicode_name[pos_last_dot + i] : '?';
|
long_ext[i] = (unicode_name[pos_last_dot + i] < 256) ? unicode_name[pos_last_dot + i] : '?';
|
||||||
long_ext[i] = '\0';
|
long_ext[i] = '\0';
|
||||||
file_name_ext = long_ext;
|
file_name_ext = long_ext;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user