Fix name of variable

This commit is contained in:
Nick Chambers 2022-07-10 17:20:13 -05:00
parent cb257baec0
commit 941af4e4cd
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ void gargoyle_test_digest_argv(void) {
NULL
};
int argc = sizeof(args) / sizeof(char *);
int argc = sizeof(normal_args) / sizeof(char *);
char **argv = normal_args;
uint8_t res = gargoyle_digest_argv(optc, optv, &argc, &argv, &err, 0);
CU_ASSERT_EQUAL(res, GARGOYLE_ERR_SUCCESS);