Removed extraneous debugging stuff.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4842 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2001-07-01 04:04:30 +00:00
parent b2f5d19660
commit a989b8749c

View File

@ -436,18 +436,12 @@ xaccFreqSpecGetNextInstance(
/* This implements || composites. */
guint32 min_julian = 0xFFFFFFFF; /* the biggest unsigned 32 bit number */
guint32 this_julian;
char tmpBuf[25];
DEBUG( "List length: %d", g_list_length( list ) );
do {
GDate next_repeat;
xaccFreqSpecGetNextInstance(
(FreqSpec*) list->data,
in_date,
&next_repeat );
g_date_strftime( tmpBuf, 25, "%a, %b %e, %Y", in_date );
DEBUG( "in date: %s", tmpBuf );
g_date_strftime( tmpBuf, 25, "%a, %b %e, %Y", &next_repeat );
DEBUG( "next repeat: %s", tmpBuf );
this_julian = g_date_julian( &next_repeat );
min_julian = min( min_julian, this_julian );