From 4b89406f2d482d84c2ae6fe01b6d7fa1d0dda76f Mon Sep 17 00:00:00 2001 From: Ludovic Jacomme Date: Fri, 30 Jul 2004 01:01:32 +0000 Subject: [PATCH] - comment debug messages ... --- alliance/src/loon/src/lon_lib_utils.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/alliance/src/loon/src/lon_lib_utils.c b/alliance/src/loon/src/lon_lib_utils.c index 5bfb0e6b..274bce0a 100644 --- a/alliance/src/loon/src/lon_lib_utils.c +++ b/alliance/src/loon/src/lon_lib_utils.c @@ -359,10 +359,14 @@ extern void addCell(befig_list* befig) for (chain=CELLS; chain; chain=chain->NEXT) { int x; cell= (cell_list*) chain->DATA; +# if 0 /* LUDO: Remove verbose/debug message ? */ printf("+ %s %s\n", cell->BEFIG->NAME, befig->NAME); +# endif x = compare_befig(cell->BEFIG, befig); +# if 0 /* LUDO: Remove verbose/debug message ? */ printf("- %s %s\n", cell->BEFIG->NAME, befig->NAME); +# endif if (x) break; }