mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +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;
|
||||
}
|
||||
g_error ("Unknown jurisdiction '%s'\n", ref);
|
||||
return JURISDICTION_GENERIC;
|
||||
}
|
||||
|
||||
typedef enum
|
||||
|
@ -789,8 +790,8 @@ main (int argc, char **argv)
|
|||
/* no source license */
|
||||
if (license->titles == NULL)
|
||||
g_error ("License has no titles: %s\n", license->ref);
|
||||
if (license->descriptions == NULL);
|
||||
g_printerr ("License %s has no descriptions!\n", license->ref);
|
||||
if (license->descriptions == NULL)
|
||||
g_printerr ("License %s has no descriptions!\n", license->ref);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue