From 8a1933e3b919b23f07cc60a584d6d8272aeeda2c Mon Sep 17 00:00:00 2001 From: robijn Date: Sun, 4 Aug 2002 20:52:36 +0000 Subject: [PATCH] Removed some debugging. --- shared/LL.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }