Skip to content

Commit

Permalink
Fix warnings in test driver
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Dec 10, 2021
1 parent 2b074e6 commit bbccce6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/test/src/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,12 @@ void* bake_test_run_suite_range(

char *test_name = ut_asprintf("%s.%s", suite->id, test->id);
ut_proc proc;
int8_t rc;
int sig;
int8_t rc = 0;
int sig = 0;
bool proc_fail = false;

memset(&proc, 0, sizeof(ut_proc));

if (prefix) {
char *has_space = strchr(prefix, ' ');
if (has_space) {
Expand Down

0 comments on commit bbccce6

Please sign in to comment.