From 0cd52ec5fe6d4d35b9a22dc309933898010aaf92 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 5 Jan 2020 16:18:12 -0800 Subject: [PATCH] Small whitespace fixup. --- gnucash/import-export/import-account-matcher.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnucash/import-export/import-account-matcher.c b/gnucash/import-export/import-account-matcher.c index 7cbbcd7bb4..c0ae5584e6 100644 --- a/gnucash/import-export/import-account-matcher.c +++ b/gnucash/import-export/import-account-matcher.c @@ -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) { const gchar * current_online_id = gnc_import_get_acc_online_id(acct); - if ( (current_online_id != NULL - && param_online_id != NULL ) - && strncmp( current_online_id, param_online_id, - strlen( current_online_id ) ) == 0 ) + if ((current_online_id != NULL && param_online_id != NULL) + && strncmp (current_online_id, param_online_id, + strlen (current_online_id)) == 0) { return (gpointer *) acct; }