Skip to content

Commit

Permalink
fix typo in munit.c (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Jul 17, 2023
1 parent 2c47ad1 commit 4b559ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/floats/src/munit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ munit_print_time(FILE* fp, munit_uint64_t nanoseconds) {
}
#endif

/* Add a paramter to an array of parameters. */
/* Add a parameter to an array of parameters. */
static MunitResult
munit_parameters_add(size_t* params_size, MunitParameter* params[MUNIT_ARRAY_PARAM(*params_size)], char* name, char* value) {
*params = realloc(*params, sizeof(MunitParameter) * (*params_size + 2));
Expand Down Expand Up @@ -2052,4 +2052,4 @@ int
munit_suite_main(const MunitSuite* suite, void* user_data,
int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)]) {
return munit_suite_main_custom(suite, user_data, argc, argv, NULL);
}
}

0 comments on commit 4b559ce

Please sign in to comment.