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