summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 2cccecf..eb38792 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -85,7 +85,7 @@ int main()
// ofstream outFile("C:\\TEMP\\Chap_11_Report.txt");
//inFile.open("C:\\TEMP\\Chap_11_data.txt");
- ofstream outFile("C:\\temp\\Chap_11_Repor.txt");
+ ofstream outFile("C:\\temp\\Chap_11_Report.txt");
inFile.open("C:\\Users\\pres\\source\\repos\\cst116-ch11-debugging-prestonderek\\Debug11File1.txt");
if (inFile.is_open())
@@ -101,13 +101,13 @@ int main()
}
else
{
- cout << "Trouble Opening File";
+ cout << "Trouble Opening Input File";
cout << "\n\n\t\t ** About to EXIT NOW! ** ";
}
}
else
{
- cout << "Trouble Opening File";
+ cout << "Trouble Opening Output File";
cout << "\n\n\t\t ** About to EXIT NOW! ** ";
}
return 0;