mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
tag: fix some warnings in mklicensestables
https://bugzilla.gnome.org/show_bug.cgi?id=774878
This commit is contained in:
parent
b68d9bbe43
commit
c2dd0149c9
1 changed files with 3 additions and 2 deletions
|
@ -137,6 +137,7 @@ ref_to_jurisdiction (const gchar * ref)
|
||||||
bit <<= 1;
|
bit <<= 1;
|
||||||
}
|
}
|
||||||
g_error ("Unknown jurisdiction '%s'\n", ref);
|
g_error ("Unknown jurisdiction '%s'\n", ref);
|
||||||
|
return JURISDICTION_GENERIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
|
@ -789,7 +790,7 @@ main (int argc, char **argv)
|
||||||
/* no source license */
|
/* no source license */
|
||||||
if (license->titles == NULL)
|
if (license->titles == NULL)
|
||||||
g_error ("License has no titles: %s\n", license->ref);
|
g_error ("License has no titles: %s\n", license->ref);
|
||||||
if (license->descriptions == NULL);
|
if (license->descriptions == NULL)
|
||||||
g_printerr ("License %s has no descriptions!\n", license->ref);
|
g_printerr ("License %s has no descriptions!\n", license->ref);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue