diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-30 20:43:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 20:43:31 -0400 |
commit | 0b6829ba70ae313a2b4d40f19690e32a42260675 (patch) | |
tree | 9683d6468706d824c54900ec54e9139f7f8897e2 /tools/fixrom/fixrom.c | |
parent | 3706f5edabc9633e941ddeaeadb7a6c18bf46b3b (diff) | |
parent | e0dc4d48743a37385de13a7412316c7488ecea2e (diff) |
Merge pull request #205 from PikalaxALT/pikalax_work
Rename compressed NCGR/NCLR
Diffstat (limited to 'tools/fixrom/fixrom.c')
-rw-r--r-- | tools/fixrom/fixrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fixrom/fixrom.c b/tools/fixrom/fixrom.c index 0acbbe11..6c5f5da1 100644 --- a/tools/fixrom/fixrom.c +++ b/tools/fixrom/fixrom.c @@ -122,7 +122,7 @@ int main(int argc, char ** argv) fatal_error("multiple --secure-crc options specified"); } char * endptr; - ulong secure_crc_l = strtoul(argv[++i], &endptr, 0); + unsigned long secure_crc_l = strtoul(argv[++i], &endptr, 0); if (secure_crc_l == 0 && endptr == argv[i]) { fatal_error("argument to --secure-crc must be an integer"); |