Skip to content

Commit

Permalink
Debug CI failure on Github
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Apr 17, 2024
1 parent a0a51ee commit c779414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5TSkey.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ H5TS_key_set_value(H5TS_key_t key, void *value)
/* Set the value for this thread */
fprintf(stderr, "%s:%u - key = %llu, value = %p\n", __func__, __LINE__,
(unsigned long long)H5TS_thrd_info_key_g, value);
if (H5_UNLIKELY(0 != TlsSetValue(key, (LPVOID)value)))
if (H5_UNLIKELY(0 == TlsSetValue(key, (LPVOID)value)))
HGOTO_DONE(FAIL);

done:
Expand Down

0 comments on commit c779414

Please sign in to comment.