fix: typo
This commit is contained in:
parent
73139aca73
commit
9197ac7df5
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ void interactive_commands()
|
||||||
<< endl;
|
<< endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ifstream infile(filename1.c_str());
|
ifstream infile(filename1);
|
||||||
if (infile.good()) {
|
if (infile.good()) {
|
||||||
inputFileName = filename1;
|
inputFileName = filename1;
|
||||||
cout << "tnt2winclada> Input file set "
|
cout << "tnt2winclada> Input file set "
|
||||||
|
@ -79,7 +79,7 @@ void interactive_commands()
|
||||||
<< endl;
|
<< endl;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ofstream outfile(filename2.c_str());
|
ofstream outfile(filename2);
|
||||||
outputFileName = filename2;
|
outputFileName = filename2;
|
||||||
cout << "tnt2winclada> Output file set to "
|
cout << "tnt2winclada> Output file set to "
|
||||||
<< filename2 << endl;
|
<< filename2 << endl;
|
||||||
|
|
Loading…
Reference in a new issue