Author: jshaw
Date: Sat Sep 22 13:31:06 2007
New Revision: 3562
URL:
http://source.netsurf-browser.org?rev=3562&view=rev
Log:
Change to C-style comments
Modified:
trunk/dom/test/list.c
Modified: trunk/dom/test/list.c
URL:
http://source.netsurf-browser.org/trunk/dom/test/list.c?rev=3562&r1=3...
==============================================================================
--- trunk/dom/test/list.c (original)
+++ trunk/dom/test/list.c Sat Sep 22 13:31:06 2007
@@ -35,19 +35,19 @@
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++;
}