Fix warning in ff_dir.c (#10)

This commit fixes warning:
warning: pointer targets in assignment from 'int8_t *' {aka 'signed char *'} to 'char *' differ in signedness [-Wpointer-sign]
This commit is contained in:
Kirill Zhumarin
2021-04-12 18:43:20 +03:00
committed by GitHub
parent d725a4c14a
commit 07511e36c9

View File

@@ -2518,7 +2518,7 @@ uint32_t ulCluster;
} }
#elif ( ffconfigUNICODE_UTF8_SUPPORT != 0 ) #elif ( ffconfigUNICODE_UTF8_SUPPORT != 0 )
{ {
NamePtr = ( int8_t * ) ( usUtf16Name + 13 * ( xNumLFNs - 1 ) ); NamePtr = ( char * ) ( usUtf16Name + 13 * ( xNumLFNs - 1 ) );
} }
#else #else
{ {