Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
tools: fix missing initializer warning in js2c.py
Browse files Browse the repository at this point in the history
Fix a -Wmissing-field-initializers style compiler warning in the code that's
generated by js2c.py.
  • Loading branch information
bnoordhuis committed Aug 24, 2012
1 parent c78678b commit c4fa77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/js2c.py
Expand Up @@ -227,7 +227,7 @@ def ReadMacros(lines):
%(native_lines)s\
{ NULL, NULL } /* sentinel */
{ NULL, NULL, 0 } /* sentinel */
};
Expand Down

0 comments on commit c4fa77a

Please sign in to comment.