From fb21e068ad55fc128fa0fab53ee3326a9f5fc271 Mon Sep 17 00:00:00 2001 From: James Shaw Date: Sat, 22 Sep 2007 12:31:06 +0000 Subject: Change to C-style comments svn path=/trunk/dom/; revision=3562 --- test/list.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/list.c') diff --git a/test/list.c b/test/list.c index 18b7d01..3204237 100644 --- a/test/list.c +++ b/test/list.c @@ -35,19 +35,19 @@ void list_add(struct list* list, void* data) { elt->next = NULL; struct list_elt* tail = list->tail; - // if tail was set, make its 'next' ptr point to elt + /* if tail was set, make its 'next' ptr point to elt */ if (tail != NULL) { tail->next = elt; } - // make elt the new tail + /* make elt the new tail */ list->tail = elt; if (list->head == NULL) { list->head = elt; } - // inc the size of the list + /* inc the size of the list */ list->size++; } -- cgit v1.2.3