aboutsummaryrefslogtreecommitdiff
path: root/tools/create_kyradat
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-17 16:40:29 +0000
committerJohannes Schickel2009-09-17 16:40:29 +0000
commit7d7e319b4fea6678ffb9ea02ca335ac726c38695 (patch)
treebef13efeb51ca4038d4acb8b266d5c6b07b2ada7 /tools/create_kyradat
parentb4dfb066e4d1850ac90f5022bf75a11b5bfcba0e (diff)
downloadscummvm-rg350-7d7e319b4fea6678ffb9ea02ca335ac726c38695.tar.gz
scummvm-rg350-7d7e319b4fea6678ffb9ea02ca335ac726c38695.tar.bz2
scummvm-rg350-7d7e319b4fea6678ffb9ea02ca335ac726c38695.zip
Add some missing new lines to error messages.
svn-id: r44168
Diffstat (limited to 'tools/create_kyradat')
-rw-r--r--tools/create_kyradat/create_kyradat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/create_kyradat/create_kyradat.cpp b/tools/create_kyradat/create_kyradat.cpp
index 94ea4b004e..ee3c45b58a 100644
--- a/tools/create_kyradat/create_kyradat.cpp
+++ b/tools/create_kyradat/create_kyradat.cpp
@@ -437,7 +437,7 @@ bool updateIndex(PAKFile &out, const Game *g) {
out.removeFile(filename);
if (!out.addFile(filename, index, kIndexSize)) {
- fprintf(stderr, "ERROR: couldn't update %s file", filename);
+ fprintf(stderr, "ERROR: couldn't update %s file\n", filename);
delete[] index;
return false;
}
@@ -1007,7 +1007,7 @@ bool process(PAKFile &out, const Game *g, const byte *data, const uint32 size) {
PAKFile::cFileList *list = out.getFileList();
// If the data wasn't found already, we need to break the extraction here
if (!list || !list->findEntry(filename)) {
- fprintf(stderr, "Couldn't find id %d/%s in executable file", *entry, getIdString(*entry));
+ fprintf(stderr, "Couldn't find id %d/%s in executable file\n", *entry, getIdString(*entry));
return false;
} else {
warning("Id %d/%s is present in kyra.dat but could not be found in the executable", *entry, getIdString(*entry));