mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-08-15 11:27:35 +00:00
fix printf safety warning
This commit is contained in:
@@ -934,7 +934,7 @@ int main(int argc, char **argv)
|
|||||||
goto quit;
|
goto quit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf(GetString(STR_READING_ROM_FILE));
|
printf("%s", GetString(STR_READING_ROM_FILE));
|
||||||
rom_size = lseek(rom_fd, 0, SEEK_END);
|
rom_size = lseek(rom_fd, 0, SEEK_END);
|
||||||
lseek(rom_fd, 0, SEEK_SET);
|
lseek(rom_fd, 0, SEEK_SET);
|
||||||
rom_tmp = new uint8[ROM_SIZE];
|
rom_tmp = new uint8[ROM_SIZE];
|
||||||
|
Reference in New Issue
Block a user