Skip to content

Commit

Permalink
Merge pull request #677 from cole-miller/fix-armhf-pointer-cast
Browse files Browse the repository at this point in the history
pool: Use uintptr_t for pool thread magic number
  • Loading branch information
cole-miller authored Aug 1, 2024
2 parents 05ae53f + 92e9383 commit d5631a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/threadpool.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static const struct sm_conf planner_states[PS_NR] = {
},
};

static const uint64_t pool_thread_magic = 0xf344e2;
static const uintptr_t pool_thread_magic = 0xf344e2;
static uv_key_t thread_identifier_key;

enum {
Expand Down

0 comments on commit d5631a9

Please sign in to comment.