From 4df662afae2045a935d541cbff2d9cedc65a1591 Mon Sep 17 00:00:00 2001 From: Richard Cohen Date: Sat, 13 May 2023 13:08:07 +0100 Subject: [PATCH] Fix the typo in function name "new_query_for_addresss" --- libgnucash/app-utils/gnc-addr-quickfill.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgnucash/app-utils/gnc-addr-quickfill.c b/libgnucash/app-utils/gnc-addr-quickfill.c index 114323d7a0..a5508741ed 100644 --- a/libgnucash/app-utils/gnc-addr-quickfill.c +++ b/libgnucash/app-utils/gnc-addr-quickfill.c @@ -134,7 +134,7 @@ static void address_cb(gpointer data, gpointer user_data) /** Creates a new query that searches for all GncAddress items in the * current book. */ -static QofQuery *new_query_for_addresss(QofBook *book) +static QofQuery *new_query_for_address(QofBook *book) { QofQuery *query = qof_query_create_for (GNC_ID_ADDRESS); g_assert(book); @@ -148,7 +148,7 @@ static QofQuery *new_query_for_addresss(QofBook *book) static AddressQF* build_shared_quickfill (QofBook *book, const char * key) { AddressQF *result; - QofQuery *query = new_query_for_addresss(book); + QofQuery *query = new_query_for_address(book); GList *entries = qof_query_run(query); /* g_warning("Found %d GncAddress items", g_list_length (entries)); */