diff --git a/shared/LL.c b/shared/LL.c index 3ef3bdc..528d3f7 100644 --- a/shared/LL.c +++ b/shared/LL.c @@ -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; }