eel: string: remove tautological comparison

This commit is contained in:
Ernestas Kulik 2018-03-05 10:37:21 +02:00
parent 6f031c4aed
commit 9f9183d83e

View file

@ -103,7 +103,6 @@ eel_str_middle_truncate (const gchar *string,
g_return_val_if_fail (string != NULL, NULL);
g_return_val_if_fail (truncate_length > 0, NULL);
g_return_val_if_fail (truncate_length <= G_MAXLONG, NULL);
ellipsis_length = g_utf8_strlen (ellipsis, -1);