Skip to content

Commit

Permalink
sb132: #i113570# correctly pass char* to %s (patch by tono)
Browse files Browse the repository at this point in the history
  • Loading branch information
sb committed Sep 23, 2010
1 parent 974a58a commit 0aa94e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crashrep/source/win32/soreport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,7 @@ bool WriteChecksumFile( FILE *fchksum, const hash_map< string, string >& rLibrar
for ( int i = 0; i < sizeof(checksum); fprintf( fchksum, "%02X", checksum[i++] ) );
fprintf( fchksum, "\" bytes=\"%d\" file=\"%s\"/>\n",
nBytesProcessed,
GetFileName( iter->first ) );
GetFileName( iter->first ).c_str() );
}
}

Expand Down

0 comments on commit 0aa94e9

Please sign in to comment.