Skip to content

Commit

Permalink
fix: fix function call in uppercaser.c
Browse files Browse the repository at this point in the history
The called function didn't exist, and made print_number_of_args useless
  • Loading branch information
khalidbelk committed Jun 17, 2024
1 parent cc0f47a commit 1573ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/c/uppercaser/uppercaser.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void print_argument(char *arg);

int main(int argc, char **argv) {
// Uncomment this to print out number of arguments
// printNumberOfArgs(argc);
// print_number_of_args(argc);

// Our first argument is the path used to run the program
// In this case, that's ./uppercaser
Expand Down

0 comments on commit 1573ac9

Please sign in to comment.