home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
922021e
)
Added newline to end of error messages.
author
Christian Heller
<c.heller@plomlompom.de>
Wed, 21 Aug 2013 02:52:45 +0000
(
04:52
+0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Wed, 21 Aug 2013 02:52:45 +0000
(
04:52
+0200)
src/rexit.c
patch
|
blob
|
history
diff --git
a/src/rexit.c
b/src/rexit.c
index d718f19d5656a1c9a0d838c96cd8d6dcc87d6a9d..73d740ba4bd8e8d4e55809758dc9b1d000818dea 100644
(file)
--- a/
src/rexit.c
+++ b/
src/rexit.c
@@
-67,6
+67,6
@@
extern void exit_err(uint8_t err, struct World * world, char * msg)
return;
}
cleanup(world);
- printf(msg);
+ printf(
"%s\n",
msg);
exit(EXIT_FAILURE);
}