mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
FFlist.h: fix copy / paste bug in ffListInitMove
This commit is contained in:
+1
-1
@@ -66,7 +66,7 @@ static inline void ffListInitMove(FFlist* list, FFlist* src)
|
||||
list->elementSize = src->elementSize;
|
||||
list->capacity = src->capacity;
|
||||
list->length = src->length;
|
||||
list->data = list->data;
|
||||
list->data = src->data;
|
||||
ffListInit(src, list->elementSize);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user