* view.c (enqueue_change): Made the algorithm independent of the
memory layout (especially the order) of the fields in struct hexedit_change_node.
Этот коммит содержится в:
родитель
2d8721c745
Коммит
0453262b4b
@ -21,6 +21,9 @@
|
||||
* view.c (display): Removed the call to the empty macros
|
||||
view_freeze() and view_thaw(). Deleted these macros, as they
|
||||
are otherwise unused.
|
||||
* view.c (enqueue_change): Made the algorithm independent of the
|
||||
memory layout (especially the order) of the fields in struct
|
||||
hexedit_change_node.
|
||||
|
||||
2005-04-14 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
|
@ -375,7 +375,7 @@ enqueue_change (struct hexedit_change_node **head,
|
||||
node->next = curr;
|
||||
return;
|
||||
}
|
||||
head = (struct hexedit_change_node **) curr;
|
||||
head = &(curr->next);
|
||||
curr = curr->next;
|
||||
}
|
||||
*head = node;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user