Skip to content

Commit

Permalink
Fix incorrect argument in call to Msg().
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 8, 2014
1 parent 8b67bb5 commit 878cec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/dump_string.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ std::string dump_string( LPCSTR name, const Fmatrix &form )

void dump( LPCSTR name, const Fmatrix &form )
{
Msg( "%s", dump_string( name, form ) );
Msg( "%s", dump_string( name, form ).c_str() );
//Msg( "%s, _14_=%f ", dump_string( make_string( "%s.i, ", name ).c_str(), form.i ).c_str( ) , form._14_ );
//Msg( "%s, _24_=%f ", dump_string( make_string( "%s.j, ", name ).c_str(), form.j ).c_str( ) , form._24_ );
//Msg( "%s, _34_=%f ", dump_string( make_string( "%s.k, ", name ).c_str(), form.k ).c_str( ) , form._34_ );
Expand Down

0 comments on commit 878cec4

Please sign in to comment.