mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-12 04:21:25 -07:00
fix clang warning and errors
This commit is contained in:
+10
-1
@@ -4,7 +4,16 @@
|
||||
internal void
|
||||
bucket_list_concat_in_place(BucketList *list, BucketList *to_concat)
|
||||
{
|
||||
SLLConcatInPlaceNoCount(list, to_concat);
|
||||
if (to_concat->first) {
|
||||
if (list->first) {
|
||||
list->last->next = to_concat->first;
|
||||
list->last = to_concat->last;
|
||||
} else {
|
||||
list->first = to_concat->first;
|
||||
list->last = to_concat->last;
|
||||
}
|
||||
MemoryZeroStruct(to_concat);
|
||||
}
|
||||
}
|
||||
|
||||
internal BucketNode *
|
||||
|
||||
Reference in New Issue
Block a user