mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:35:45 +00:00
[TOOLS] Fix/suppress all MSVC/x64 warnings (#1525)
This commit is contained in:
parent
0aed8b09a4
commit
f47f45dbdd
29 changed files with 140 additions and 37 deletions
|
@ -167,8 +167,8 @@ int main(int argc, char* argv[])
|
|||
|
||||
/* Generate the header file and close it */
|
||||
fprintf(outHFile, "/* This file is autogenerated, do not edit. */\n\n");
|
||||
fprintf(outHFile, "#define %s_SIZE %lu\n" , argv[5], bufLen);
|
||||
fprintf(outHFile, "extern unsigned char %s[%lu];\n", argv[5], bufLen);
|
||||
fprintf(outHFile, "#define %s_SIZE %lu\n" , argv[5], (unsigned long)bufLen);
|
||||
fprintf(outHFile, "extern unsigned char %s[%lu];\n", argv[5], (unsigned long)bufLen);
|
||||
fclose(outHFile);
|
||||
|
||||
/* Close the input file */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue