summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-06-20 14:39:08 +0100
committerRichard Hughes <richard@hughsie.com>2014-06-20 14:39:34 +0100
commite729fc0650545a4c6ce670ab5441eafed93c5b88 (patch)
tree827d6044e8b7b63a0d2f0850dc307c3acccf0f20
parentcb6d62213642cf7c4c6cdeb7b5c1340e2cfd7070 (diff)
downloadappstream-glib-e729fc0650545a4c6ce670ab5441eafed93c5b88.tar.gz
trivial: Fix a silly compile typo in the last commit
-rw-r--r--libappstream-glib/as-app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libappstream-glib/as-app.c b/libappstream-glib/as-app.c
index 0aef4cb..51a7108 100644
--- a/libappstream-glib/as-app.c
+++ b/libappstream-glib/as-app.c
@@ -2024,7 +2024,7 @@ as_app_node_insert (AsApp *app, GNode *parent, gdouble api_version)
if (api_version >= 0.4) {
as_node_insert (node_app, "project_license",
priv->project_license, 0, NULL);
- } else if (api_version >= 0.31) { {
+ } else if (api_version >= 0.31) {
as_node_insert (node_app, "licence",
priv->project_license, 0, NULL);
}