From 4275d98d054de7f444ad4c802162585cf9df2d0a Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 22 Mar 1998 17:47:27 +0000 Subject: [PATCH] disable assert for now git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@693 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/Account.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/engine/Account.c b/src/engine/Account.c index acd6df9f69..b3d22160c0 100644 --- a/src/engine/Account.c +++ b/src/engine/Account.c @@ -23,6 +23,7 @@ * Huntington Beach, CA 92648-4632 * \********************************************************************/ +#include #include #include "config.h" @@ -205,8 +206,10 @@ xaccGetAccountID (Account *acc) #define CHECK(acc) { \ if (0 == acc->open) { \ - printf ("Error: Account not open for editing\n"); \ - return; \ + /* not today, soem day in the future ... */ \ + /* printf ("Error: Account not open for editing\n"); */ \ + /* assert (0); */ \ + /* return; */ \ } \ }