tools: fix missing initializer warning in js2c.py

Fix a -Wmissing-field-initializers style compiler warning in the code that's
generated by js2c.py.
This commit is contained in:
Ben Noordhuis 2012-08-24 22:56:26 +02:00
parent c78678b081
commit c4fa77a5ec

View File

@ -227,7 +227,7 @@ static const struct _native natives[] = {
%(native_lines)s\
{ NULL, NULL } /* sentinel */
{ NULL, NULL, 0 } /* sentinel */
};