Removed some debugging.

This commit is contained in:
robijn
2002-08-04 20:52:36 +00:00
parent 7d39b49079
commit 8a1933e3b9
+4 -4
View File
@@ -398,10 +398,10 @@ LL_DeleteNode (LinkedList * list)
if (list->current == &list->tail)
return NULL;
#ifdef DEBUG
/*
printf ("LL_DeleteNode: Before...\n");
LL_dprint (list);
#endif
*/
next = list->current->next;
prev = list->current->prev;
@@ -423,10 +423,10 @@ LL_DeleteNode (LinkedList * list)
list->current = next;
#ifdef DEBUG
/*
printf ("LL_DeleteNode: After...\n");
LL_dprint (list);
#endif
*/
return data;
}