docs: pwg: fix missing end of line semicolon in custom meta example

This commit is contained in:
Tim-Philipp Müller 2016-02-02 16:34:51 +00:00
parent f90126a62e
commit 81df1e1a34

View file

@ -449,7 +449,7 @@ my_example_meta_free (GstMeta * meta, GstBuffer * buffer)
{
MyExampleMeta *emeta = (MyExampleMeta *) meta;
g_free (emeta->name)
g_free (emeta->name);
emeta->name = NULL;
}