aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-09-06 22:32:34 +0000
committerMax Horn2003-09-06 22:32:34 +0000
commit50520b55fac7f43f2910cc1fe4b198513c7552cd (patch)
tree80c89e48481e20173f96ace3074e13fc4d84668b /common
parentd520f2f44cebdb05d4923e38c804d59b8f41ae44 (diff)
downloadscummvm-rg350-50520b55fac7f43f2910cc1fe4b198513c7552cd.tar.gz
scummvm-rg350-50520b55fac7f43f2910cc1fe4b198513c7552cd.tar.bz2
scummvm-rg350-50520b55fac7f43f2910cc1fe4b198513c7552cd.zip
removed superfluous newline
svn-id: r10050
Diffstat (limited to 'common')
-rw-r--r--common/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/main.cpp b/common/main.cpp
index 7a847f5770..8f67fc3300 100644
--- a/common/main.cpp
+++ b/common/main.cpp
@@ -219,7 +219,7 @@ int main(int argc, char *argv[]) {
// print a message if gameid is invalid
if (engine == NULL)
- error("%s is an invalid target. Use the -z parameter to list targets\n",
+ error("%s is an invalid target. Use the -z parameter to list targets",
detector._gameFileName.c_str());
// Run the game engine
@@ -257,7 +257,7 @@ void free_check(void *ptr) {
exit(1);
}
if ((int)ptr & 1) {
- warning("Freeing odd address 0x%x\n", ptr);
+ warning("Freeing odd address 0x%x", ptr);
}
free(ptr);
}