diff --git a/headers/private/kernel/util/DoublyLinkedList.h b/headers/private/kernel/util/DoublyLinkedList.h index 4d68d986c0..22fda14fea 100644 --- a/headers/private/kernel/util/DoublyLinkedList.h +++ b/headers/private/kernel/util/DoublyLinkedList.h @@ -1,5 +1,5 @@ /* - * Copyright 2005-2006, Ingo Weinhold, bonefish@users.sf.net. All rights reserved. + * Copyright 2005-2007, Ingo Weinhold, bonefish@users.sf.net. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef KERNEL_UTIL_DOUBLY_LINKED_LIST_H @@ -23,11 +23,11 @@ template class DoublyLinkedListLink { public: - DoublyLinkedListLink() : previous(NULL), next(NULL) {} + DoublyLinkedListLink() : next(NULL), previous(NULL) {} ~DoublyLinkedListLink() {} - Element *previous; Element *next; + Element *previous; }; // DoublyLinkedListLinkImpl diff --git a/headers/private/kernel/util/list.h b/headers/private/kernel/util/list.h index 79fce6b3b1..94102e0291 100644 --- a/headers/private/kernel/util/list.h +++ b/headers/private/kernel/util/list.h @@ -1,5 +1,5 @@ /* - * Copyright 2003-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2003-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef KERNEL_LIST_H @@ -27,8 +27,8 @@ typedef struct list_link list_link; */ struct list_link { - list_link *next; - list_link *prev; + list_link *next; + list_link *prev; }; struct list {