gnucash maint: Fix runaway sed error.
John Ralls
jralls at code.gnucash.org
Tue Sep 14 19:24:44 EDT 2021
Updated via https://github.com/Gnucash/gnucash/commit/1d898319 (commit)
from https://github.com/Gnucash/gnucash/commit/824b5154 (commit)
commit 1d8983191dd1dabd1f16e791bfc76ae698910292
Author: John Ralls <jralls at ceridwen.us>
Date: Tue Sep 14 16:24:28 2021 -0700
Fix runaway sed error.
diff --git a/libgnucash/core-utils/gnc-glib-utils.c b/libgnucash/core-utils/gnc-glib-utils.c
index b872e30f1..c15e1dd8d 100644
--- a/libgnucash/core-utils/gnc-glib-utils.c
+++ b/libgnucash/core-utils/gnc-glib-utils.c
@@ -306,7 +306,7 @@ gnc_scm_log_msg(const gchar *msg)
}
void
-gnc_scm_loDEBUG(const gchar *msg)
+gnc_scm_log_debug(const gchar *msg)
{
g_log("gnc.scm", G_LOG_LEVEL_DEBUG, "%s", msg);
}
diff --git a/libgnucash/core-utils/gnc-glib-utils.h b/libgnucash/core-utils/gnc-glib-utils.h
index 1216afd92..97e36c53d 100644
--- a/libgnucash/core-utils/gnc-glib-utils.h
+++ b/libgnucash/core-utils/gnc-glib-utils.h
@@ -175,7 +175,7 @@ void gnc_g_list_cut(GList **list, GList *cut_point);
void gnc_scm_log_warn(const gchar *msg);
void gnc_scm_log_error(const gchar *msg);
void gnc_scm_log_msg(const gchar *msg);
-void gnc_scm_loDEBUG(const gchar *msg);
+void gnc_scm_log_debug(const gchar *msg);
/** @} */
Summary of changes:
libgnucash/core-utils/gnc-glib-utils.c | 2 +-
libgnucash/core-utils/gnc-glib-utils.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
More information about the gnucash-changes
mailing list