From c2972c75d075b286b630e8954a4bc7b4968e984e Mon Sep 17 00:00:00 2001 From: John Ralls Date: Fri, 13 Jul 2018 12:18:25 -0700 Subject: [PATCH] Fix missing prototype error. --- gnucash/import-export/ofx/gnc-ofx-import.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnucash/import-export/ofx/gnc-ofx-import.c b/gnucash/import-export/ofx/gnc-ofx-import.c index d7c927bdad..cd4df574ca 100644 --- a/gnucash/import-export/ofx/gnc-ofx-import.c +++ b/gnucash/import-export/ofx/gnc-ofx-import.c @@ -90,8 +90,9 @@ get_associated_income_account(const Account* investment_account) gnc_account_get_book(investment_account)); } -void set_associated_income_account(Account* investment_account, - const Account *income_account) +static void +set_associated_income_account(Account* investment_account, + const Account *income_account) { const GncGUID * income_acc_guid;