Skip to content

Commit

Permalink
little typo..
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmanelli committed Oct 10, 2014
1 parent 792ad90 commit 44d73fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simuStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define NO_TEMPLATE 3
#define NO_INPUT_FILE 4
#define NO_OUTPUT_FILE 5
#define UDPATE_DONE 6
#define UPDATE_DONE 6

using namespace std;

Expand Down Expand Up @@ -85,10 +85,10 @@ int main(int argc, char** argv){
exit(1);
} else if( WEXITSTATUS(exitCode) == NO_TEMPLATE ){
cout << "No input restart template found! Verify and launch again." << endl;
exit(1)
exit(1);
} else if( WEXITSTATUS(exitCode) == NO_INPUT_FILE ){
cout << "No input file found! Verify and launch again." << endl;
exit(1)
exit(1);
} else if( WEXITSTATUS(exitCode) == NO_OUTPUT_FILE ){
cout << "No output file found! Verify and launch again." << endl;
} else if( (WEXITSTATUS(exitCode) == SIMULIST_OK) || \
Expand Down

0 comments on commit 44d73fb

Please sign in to comment.