Skip to content

Commit

Permalink
readability-identifier-length
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Feb 12, 2025
1 parent ba0df74 commit 83a4c2d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/sintax.cc
Original file line number Diff line number Diff line change
Expand Up @@ -569,26 +569,26 @@ auto sintax_thread_init(struct searchinfo_s * si) -> void
}


auto sintax_thread_exit(struct searchinfo_s * si) -> void
auto sintax_thread_exit(struct searchinfo_s * searchinfo) -> void
{
/* thread specific clean up */
unique_exit(si->uh);
minheap_exit(si->m);
xfree(si->kmers);
if (si->query_head != nullptr)
unique_exit(searchinfo->uh);
minheap_exit(searchinfo->m);
xfree(searchinfo->kmers);
if (searchinfo->query_head != nullptr)
{
xfree(si->query_head);
xfree(searchinfo->query_head);
}
if (si->qsequence != nullptr)
if (searchinfo->qsequence != nullptr)
{
xfree(si->qsequence);
xfree(searchinfo->qsequence);
}
}


auto sintax_thread_worker(void * vp) -> void *
auto sintax_thread_worker(void * void_ptr) -> void *
{
auto t = (int64_t) vp;
auto t = (int64_t) void_ptr;
sintax_thread_run(t);
return nullptr;
}
Expand Down

0 comments on commit 83a4c2d

Please sign in to comment.