aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c
index f13fc4c452..d5d25db1ac 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -132,8 +132,10 @@ e_load_ui_definition (GtkUIManager *ui_manager,
ui_manager, filename, &error);
g_free (filename);
- if (error != NULL)
- g_error ("%s", error->message); /* does not return */
+ if (error != NULL) {
+ g_error ("%s: %s", basename, error->message);
+ g_assert_not_reached ();
+ }
return merge_id;
}