From 8263f82d907aec4a394ab042d8972b5bc1deb498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 6 Apr 2009 21:13:06 +0000 Subject: [PATCH] * Missed that when cleaning up the style. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29980 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/util/DoublyLinkedList.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/kernel/util/DoublyLinkedList.h b/headers/private/kernel/util/DoublyLinkedList.h index 121520bd34..18c57ad549 100644 --- a/headers/private/kernel/util/DoublyLinkedList.h +++ b/headers/private/kernel/util/DoublyLinkedList.h @@ -28,8 +28,8 @@ public: DoublyLinkedListLink() : next(NULL), previous(NULL) {} ~DoublyLinkedListLink() {} - Element *next; - Element *previous; + Element* next; + Element* previous; }; // DoublyLinkedListLinkImpl