diff options
Diffstat (limited to 'libappstream-glib/as-app.c')
-rw-r--r-- | libappstream-glib/as-app.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libappstream-glib/as-app.c b/libappstream-glib/as-app.c index d8f1d0d..b3bfed3 100644 --- a/libappstream-glib/as-app.c +++ b/libappstream-glib/as-app.c @@ -514,7 +514,7 @@ static const gchar * as_app_fix_unique_nullable (const gchar *tmp) { if (tmp == NULL || tmp[0] == '\0') - return "*"; + return AS_APP_UNIQUE_WILDCARD; return tmp; } @@ -535,7 +535,7 @@ as_app_get_unique_id_system (AsApp *app) return "package"; /* nothing */ - return "*"; + return AS_APP_UNIQUE_WILDCARD; } /** |