remove printf

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4798 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2001-06-26 04:24:22 +00:00
parent d3214844d0
commit 8a1d6611c9

View File

@ -30,6 +30,7 @@
#include <math.h> #include <math.h>
#include "gnc-engine.h" #include "gnc-engine.h"
#include "gnc-engine-util.h"
#include "gnc-numeric.h" #include "gnc-numeric.h"
#include "guid.h" #include "guid.h"
#include "kvp_frame.h" #include "kvp_frame.h"
@ -62,6 +63,9 @@ struct _kvp_value {
} value; } value;
}; };
/* This static indicates the debugging module that this .o belongs to. */
static short module = MOD_ENGINE;
/******************************************************************** /********************************************************************
* kvp_frame functions * kvp_frame functions
********************************************************************/ ********************************************************************/
@ -891,7 +895,7 @@ kvp_value_compare(const kvp_value * kva, const kvp_value * kvb) {
return kvp_frame_compare(kva->value.frame, kvb->value.frame); return kvp_frame_compare(kva->value.frame, kvb->value.frame);
break; break;
} }
fprintf(stderr, "DANGER: reached unreachable code (kvp_value_equal).\n"); PERR ("reached unreachable code.");
return FALSE; return FALSE;
} }