diff options
author | Max Horn | 2009-11-29 21:56:37 +0000 |
---|---|---|
committer | Max Horn | 2009-11-29 21:56:37 +0000 |
commit | cbf08155c5d311723f3de96da545d00f56ae9114 (patch) | |
tree | 102399738726b93d3c8ef5bb25d76f7c03cdc93a | |
parent | 5b562407c1373913b244991e0580f9c54fd013d9 (diff) | |
download | scummvm-rg350-cbf08155c5d311723f3de96da545d00f56ae9114.tar.gz scummvm-rg350-cbf08155c5d311723f3de96da545d00f56ae9114.tar.bz2 scummvm-rg350-cbf08155c5d311723f3de96da545d00f56ae9114.zip |
add missing varag param
svn-id: r46206
-rw-r--r-- | tools/create_kyradat/pak.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_kyradat/pak.cpp b/tools/create_kyradat/pak.cpp index 23bdf7db1e..bed9fce66d 100644 --- a/tools/create_kyradat/pak.cpp +++ b/tools/create_kyradat/pak.cpp @@ -151,7 +151,7 @@ bool PAKFile::outputFileAs(const char *f, const char *fn) { FileList *cur = (_fileList != 0) ? _fileList->findEntry(f) : 0; if (!cur) { - error("file '%s' not found"); + error("file '%s' not found", f); return false; } |