Fix runaway sed error.

This commit is contained in:
John Ralls 2021-09-14 16:24:28 -07:00
parent 824b515430
commit 1d8983191d
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
/** @} */