Skip to content

Commit

Permalink
Remove return on m10spg_open error
Browse files Browse the repository at this point in the history
  • Loading branch information
AngusJull committed Jun 16, 2024
1 parent 2bd5230 commit 31a72ae
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/collectors/m10spg_clctr.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ void *m10spg_collector(void *args) {
err = m10spg_open(&loc);
if (err != EOK) {
log_print(stderr, LOG_ERROR, "Could not open M10SPG: %s", strerror(err));
return (void *)((uint64_t)err);
}
} while (err != EOK);

Expand Down

0 comments on commit 31a72ae

Please sign in to comment.