Skip to content

Commit

Permalink
main: allow for init twice (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored Dec 10, 2022
1 parent c9bceee commit bc5e287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1280,8 +1280,8 @@ int re_thread_init(void)

re = tss_get(key);
if (re) {
DEBUG_WARNING("thread_init: already added for thread\n");
return EALREADY;
DEBUG_NOTICE("thread_init: already added for thread\n");
return 0;
}

err = re_alloc(&re);
Expand Down

0 comments on commit bc5e287

Please sign in to comment.