Skip to content
Snippets Groups Projects
Commit c865bd0c authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Fix casting

Continuation of 9a1370e3
CID 168995
parent 9a1370e3
No related branches found
No related tags found
No related merge requests found
...@@ -489,7 +489,7 @@ static void _remove_duplicate_fed_jobs(List jobs) ...@@ -489,7 +489,7 @@ static void _remove_duplicate_fed_jobs(List jobs)
xassert(jobs); xassert(jobs);
hash_tbl_size = xmalloc(sizeof(uint32_t) * JOB_HASH_SIZE); hash_tbl_size = xmalloc(sizeof(uint32_t) * JOB_HASH_SIZE);
hash_job = xmalloc(sizeof(slurmdb_job_rec_t *) * JOB_HASH_SIZE); hash_job = xmalloc(sizeof(slurmdb_job_rec_t **) * JOB_HASH_SIZE);
for (i = 0; i < JOB_HASH_SIZE; i++) { for (i = 0; i < JOB_HASH_SIZE; i++) {
hash_tbl_size[i] = 100; hash_tbl_size[i] = 100;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment