Kaydet (Commit) 80d5e07c authored tarafından Colomban Wendling's avatar Colomban Wendling

Revert granting an unexpected check to an assertion

It actually happens, and until fixing this properly, don't output
useless useless scary warnings.  Anyway, this is not a big problem
or anything.
üst 59eb0557
......@@ -1392,7 +1392,8 @@ static gint compare_top_level_names(const gchar *a, const gchar *b)
/* This should never happen as it would mean that two or more top
* level items have the same name but it can happen by typos in the translations. */
g_return_val_if_fail(! utils_str_equal(a, b), 1);
if (utils_str_equal(a, b))
return 1;
foreach_ptr_array(name, i, top_level_iter_names)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment