notification: Add an assertion to clarify

Coverity doesn't see that g_enum_get_value will never return
NULL here since we always pass it a valid enum value. Help
it along with an assertion.
This commit is contained in:
Matthias Clasen 2015-07-17 16:46:26 -04:00
parent dab2097587
commit 0c12177514

View File

@ -714,6 +714,7 @@ g_notification_get_priority_nick (GNotification *notification)
enum_class = g_type_class_ref (G_TYPE_NOTIFICATION_PRIORITY);
value = g_enum_get_value (enum_class, g_notification_get_priority (notification));
g_assert (value != NULL);
nick = g_variant_new_string (value->value_nick);
g_type_class_unref (enum_class);