mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Fix missing printf arguments.
svn-id: r46024
This commit is contained in:
parent
1074924686
commit
bb5d29be80
@ -184,7 +184,7 @@ const uint8 *PAKFile::getFileData(const char *file, uint32 *size) {
|
||||
|
||||
bool PAKFile::addFile(const char *name, const char *file) {
|
||||
if (_fileList && _fileList->findEntry(name)) {
|
||||
error("entry '%s' already exists");
|
||||
error("entry '%s' already exists", name);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -207,7 +207,7 @@ bool PAKFile::addFile(const char *name, const char *file) {
|
||||
|
||||
bool PAKFile::addFile(const char *name, uint8 *data, uint32 size) {
|
||||
if (_fileList && _fileList->findEntry(name)) {
|
||||
error("entry '%s' already exists");
|
||||
error("entry '%s' already exists", name);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user