mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed 64-bit warning.
This commit is contained in:
parent
8d63a9bdc8
commit
49338b11ae
1 changed files with 1 additions and 1 deletions
2
3rdparty/fcpp/cpp2.c
vendored
2
3rdparty/fcpp/cpp2.c
vendored
|
@ -627,7 +627,7 @@ ReturnCode openinclude( struct Global *global,
|
||||||
|
|
||||||
char **incptr;
|
char **incptr;
|
||||||
char tmpname[NWORK]; /* Filename work area */
|
char tmpname[NWORK]; /* Filename work area */
|
||||||
int len;
|
size_t len;
|
||||||
|
|
||||||
#if HOST == SYS_AMIGADOS
|
#if HOST == SYS_AMIGADOS
|
||||||
if( strchr (filename, ':') != NULL )
|
if( strchr (filename, ':') != NULL )
|
||||||
|
|
Loading…
Reference in a new issue