mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
b2f5d19660
commit
a989b8749c
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user