From b4a361c082c20994391c826f4d54e91ce09bf956 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Sat, 22 Jun 2002 22:31:16 +0000 Subject: [PATCH] Benoit's "blank-line patch": Could someone please apply this ridiculous one line patch. For some reason the lack of a newline after #if DEBUG causes compilation to fail with "dialog-scheduledxaction.c:372:25: missing binary operator" on my setup. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6999 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/dialog-scheduledxaction.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gnome/dialog-scheduledxaction.c b/src/gnome/dialog-scheduledxaction.c index 14a8f31154..fc1de52b16 100644 --- a/src/gnome/dialog-scheduledxaction.c +++ b/src/gnome/dialog-scheduledxaction.c @@ -369,6 +369,7 @@ editor_ok_button_clicked( GtkButton *b, SchedXactionEditorDialog *sxed ) } unbalanceable |= !(gnc_numeric_zero_p( gnc_numeric_sub_fixed( debitSum, creditSum ) )); #if DEBUG + if ( gnc_numeric_zero_p( gnc_numeric_sub_fixed( debitSum, creditSum ) ) ) { printf( "true [%s - %s = %s]\n", gnc_numeric_to_string( debitSum ),