Skip to content

Commit

Permalink
hooked up call to help
Browse files Browse the repository at this point in the history
  • Loading branch information
garybradski authored Jun 23, 2017
1 parent ae1e689 commit e98d75d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_04-04.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void calling_function2( void ) {

}

void help(** argv) {
void help(char** argv) {
cout << "\nExample 4-4, a better way to print out a sparse matrix"
<< "\n Demonstrates printing of two different sparse matrices"
<< "\nCall:"
Expand All @@ -65,7 +65,7 @@ void help(** argv) {
}

int main( int argc, char** argv ) {

help(argv);
cout <<"Case 1:" <<endl;
calling_function1();
cout <<endl;
Expand Down

0 comments on commit e98d75d

Please sign in to comment.