disable assert for now

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@693 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-22 17:47:27 +00:00
parent 57d4199904
commit 4275d98d05

View File

@ -23,6 +23,7 @@
* Huntington Beach, CA 92648-4632 *
\********************************************************************/
#include <assert.h>
#include <string.h>
#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; */ \
} \
}