Use char_str instead of c_str in previous commit
This commit is contained in:
parent
daf510344f
commit
1c1ba25ffd
|
@ -53,7 +53,7 @@ void LOGGER::Save( const std::string& aFilename )
|
|||
{
|
||||
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 );
|
||||
|
|
|
@ -531,8 +531,7 @@ void ROUTER_TOOL::saveRouterDebugLog()
|
|||
|
||||
for( auto evt : events)
|
||||
{
|
||||
fprintf( f, "event %d %d %d %s\n", evt.p.x, evt.p.y, evt.type,
|
||||
evt.uuid.c_str() );
|
||||
fprintf( f, "event %d %d %d %s\n", evt.p.x, evt.p.y, evt.type, evt.uuid.char_str() );
|
||||
}
|
||||
|
||||
fclose( f );
|
||||
|
|
Loading…
Reference in New Issue