Attempt at fixing some bots.

llvm-svn: 184316
This commit is contained in:
Rafael Espindola 2013-06-19 15:56:53 +00:00
parent 8417a7883b
commit 18e8cf4335
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ doExtract(std::string* ErrMsg) {
// Open up a file stream for writing
std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
std::ios::binary;
std::ofstream file(I->getPath(), io_mode);
std::ofstream file(I->getPath().str(), io_mode);
// Get the data and its length
const char* data = reinterpret_cast<const char*>(I->getData());