mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-16 09:30:00 +00:00
Fix warning about wrong printf modifier for size_t. (PR #1241)
This commit is contained in:
parent
2759527f0d
commit
eead359a85
@ -5100,8 +5100,8 @@ Update_t CmdNTSC (int nArgs)
|
|||||||
ConsoleBufferPush( pPrefixText ); // TODO: Add a ": " separator
|
ConsoleBufferPush( pPrefixText ); // TODO: Add a ": " separator
|
||||||
|
|
||||||
#if _DEBUG
|
#if _DEBUG
|
||||||
LogOutput( "Filename.length.1: %d\n", len1 );
|
LogOutput( "Filename.length.1: %" SIZE_T_FMT "\n", len1 );
|
||||||
LogOutput( "Filename.length.2: %d\n", len2 );
|
LogOutput( "Filename.length.2: %" SIZE_T_FMT "\n", len2 );
|
||||||
OutputDebugString( sPaletteFilePath.c_str() );
|
OutputDebugString( sPaletteFilePath.c_str() );
|
||||||
#endif
|
#endif
|
||||||
// File path is too long
|
// File path is too long
|
||||||
|
Loading…
x
Reference in New Issue
Block a user