Forgot a fix (thanks to two people on Telegram)

This commit is contained in:
Pietro Gagliardi 2018-05-02 20:21:51 -04:00
parent b975cfb83e
commit a4cb17820c
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ void dumpResource(const char *constname, const WCHAR *name, const WCHAR *type)
if (j != 0)
printf("\n");
printf("};\n");
printf("static_assert(ARRAYSIZE(%s) == %I32d, \"wrong size for resource %s\")\n", constname, n, constname);
printf("static_assert(ARRAYSIZE(%s) == %I32d, \"wrong size for resource %s\");\n", constname, n, constname);
printf("\n");
}