[PATCH] commands: flash: add missing newlines to error messages
Wolfram Sang
w.sang at pengutronix.de
Thu Dec 13 10:46:46 EST 2012
Signed-off-by: Wolfram Sang <w.sang at pengutronix.de>
---
commands/flash.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/commands/flash.c b/commands/flash.c
index b1673de..d22d6a0 100644
--- a/commands/flash.c
+++ b/commands/flash.c
@@ -54,7 +54,7 @@ static int do_flerase(int argc, char *argv[])
fd = open(filename, O_WRONLY);
if (fd < 0) {
- printf("open %s: %s", filename, errno_str());
+ printf("open %s: %s\n", filename, errno_str());
return 1;
}
@@ -125,7 +125,7 @@ static int do_protect(int argc, char *argv[])
fd = open(filename, O_WRONLY);
if (fd < 0) {
- printf("open %s: %s", filename, errno_str());
+ printf("open %s: %s\n", filename, errno_str());
return 1;
}
--
1.7.10.4
More information about the barebox
mailing list