Skip to content

Commit

Permalink
Fixed build for OSX. Refs #7948.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Oct 29, 2013
1 parent dd7bf27 commit ef3a618
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class FixGSASInstrumentFileTest : public CxxTest::TestSuite
void createFaultFile(std::string prmfilename)
{
ofstream ofile;
ofile.open(prmfilename, ios::out);
ofile.open(prmfilename.c_str(), ios::out);
ofile << " 12345678901234567890123456789012345678901234567890123456789012345678\n";
ofile << "ID TEST \n";
ofile << "INS BANK 5\n";
Expand Down

0 comments on commit ef3a618

Please sign in to comment.