mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Small whitespace fixup.
This commit is contained in:
parent
741eb48016
commit
0cd52ec5fe
@ -84,10 +84,9 @@ static AccountPickerDialog* gnc_import_new_account_picker(void)
|
|||||||
static gpointer test_acct_online_id_match(Account *acct, gpointer param_online_id)
|
static gpointer test_acct_online_id_match(Account *acct, gpointer param_online_id)
|
||||||
{
|
{
|
||||||
const gchar * current_online_id = gnc_import_get_acc_online_id(acct);
|
const gchar * current_online_id = gnc_import_get_acc_online_id(acct);
|
||||||
if ( (current_online_id != NULL
|
if ((current_online_id != NULL && param_online_id != NULL)
|
||||||
&& param_online_id != NULL )
|
&& strncmp (current_online_id, param_online_id,
|
||||||
&& strncmp( current_online_id, param_online_id,
|
strlen (current_online_id)) == 0)
|
||||||
strlen( current_online_id ) ) == 0 )
|
|
||||||
{
|
{
|
||||||
return (gpointer *) acct;
|
return (gpointer *) acct;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user