diff options
-rw-r--r-- | common/main.cpp | 4 |
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); } |