Use char_str instead of c_str in previous commit

This commit is contained in:
Marek Roszko 2021-06-03 18:13:35 -04:00
parent daf510344f
commit 1c1ba25ffd
2 changed files with 2 additions and 3 deletions

View File

@ -53,7 +53,7 @@ void LOGGER::Save( const std::string& aFilename )
{ {
uint64_t id = 0; uint64_t id = 0;
fprintf( f, "event %d %d %d %s\n", evt.type, evt.p.x, evt.p.y, evt.uuid.c_str() ); fprintf( f, "event %d %d %d %s\n", evt.type, evt.p.x, evt.p.y, evt.uuid.char_str() );
} }
fclose( f ); fclose( f );

View File

@ -531,8 +531,7 @@ void ROUTER_TOOL::saveRouterDebugLog()
for( auto evt : events) for( auto evt : events)
{ {
fprintf( f, "event %d %d %d %s\n", evt.p.x, evt.p.y, evt.type, fprintf( f, "event %d %d %d %s\n", evt.p.x, evt.p.y, evt.type, evt.uuid.char_str() );
evt.uuid.c_str() );
} }
fclose( f ); fclose( f );