Skip to content

Commit

Permalink
version control repair
Browse files Browse the repository at this point in the history
  • Loading branch information
prathameshd30 committed Jul 12, 2024
1 parent 3a48e13 commit 7e6dc90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/data_structures/vector/vector_primitive_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,6 @@ int main(void){

// More tests required!

delete_intVec(iv,NULL);
delete_intVec(&iv,NULL);
return 0;
}
2 changes: 1 addition & 1 deletion tests/data_structures/vector/vector_struct_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ int main(void){
}
// More tests needed
print_CardVector(cv,print_Card);
delete_CardVector(cv,delete_Card);
delete_CardVector(&cv,delete_Card);
return 0;
}

0 comments on commit 7e6dc90

Please sign in to comment.