commit | d5075c7e9468ad039ca878f8db2ebf49c6dd1668 | [log] [tgz] |
---|---|---|
author | Nigel Tao <nigeltao@golang.org> | Tue Nov 02 14:07:58 2021 +1100 |
committer | Nigel Tao <nigeltao@golang.org> | Tue Nov 02 14:07:58 2021 +1100 |
tree | 9480b34e4e65d17d95ae72ee9b42fc50295331fc | |
parent | 16b51dd2a4b147ca86597ec7bbdb299e2df3cad5 [diff] [blame] |
Push "int i" into "for (int i = etc; etc; etc)"
diff --git a/script/print-json-token-debug-format.c b/script/print-json-token-debug-format.c index 866723b..e8dabd4 100644 --- a/script/print-json-token-debug-format.c +++ b/script/print-json-token-debug-format.c
@@ -312,8 +312,7 @@ WUFFS_JSON__QUIRK_REPLACE_INVALID_UNICODE, 0, }; - uint32_t i; - for (i = 0; quirks[i]; i++) { + for (uint32_t i = 0; quirks[i]; i++) { wuffs_base__token_decoder__set_quirk_enabled(g_dec, quirks[i], true); } }