README: Add missing round brackets

This commit is contained in:
Max Bruckner 2017-04-01 22:22:13 +02:00
parent 3a20692c18
commit b1e9a6c0da
1 changed files with 5 additions and 5 deletions

View File

@ -259,22 +259,22 @@ int callback(const char *name, int type, cJSON *item)
{
/* populate name */
}
else if (!strcmp(name, "format/type")
else if (!strcmp(name, "format/type"))
{
/* handle "rect" */ }
else if (!strcmp(name, "format/width")
else if (!strcmp(name, "format/width"))
{
/* 800 */
}
else if (!strcmp(name, "format/height")
else if (!strcmp(name, "format/height"))
{
/* 600 */
}
else if (!strcmp(name, "format/interlace")
else if (!strcmp(name, "format/interlace"))
{
/* false */
}
else if (!strcmp(name, "format/frame rate")
else if (!strcmp(name, "format/frame rate"))
{
/* 24 */
}