Bug #526775: Remove printf("%s", NULL) in generic importer as called from ofx.

BP


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17832 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler
2009-01-18 21:50:03 +00:00
parent a071ca3038
commit 3f05768191

View File

@@ -62,8 +62,10 @@ gnc_commodity * gnc_import_select_commodity(char * cusip,
char * tmp_namespace = NULL;
GList * commodity_list=NULL;
GList * namespace_list=NULL;
DEBUG("Default fullname received: %s", default_fullname);
DEBUG("Default mnemonic received: %s", default_mnemonic);
DEBUG("Default fullname received: %s",
default_fullname ? default_fullname : "(null)");
DEBUG("Default mnemonic received: %s",
default_mnemonic ? default_mnemonic : "(null)");
DEBUG("Looking for commodity with exchange_code: %s", cusip);