diff mbox series

libflash/blocklevel: Add missing newline to debug messages

Message ID 1523514464-4063-1-git-send-email-ppaidipe@linux.vnet.ibm.com
State Accepted
Headers show
Series libflash/blocklevel: Add missing newline to debug messages | expand

Commit Message

ppaidipe April 12, 2018, 6:27 a.m. UTC
Signed-off-by: Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com>
---
 libflash/blocklevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Stewart Smith April 16, 2018, 3:22 a.m. UTC | #1
Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com> writes:
> Signed-off-by: Pridhiviraj Paidipeddi <ppaidipe@linux.vnet.ibm.com>
> ---
>  libflash/blocklevel.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Well, that looks obvious, merged to master as of ecde3f4f211aaac2ff72e1fd0004c6faac1f7634
diff mbox series

Patch

diff --git a/libflash/blocklevel.c b/libflash/blocklevel.c
index 0076683..f3fad69 100644
--- a/libflash/blocklevel.c
+++ b/libflash/blocklevel.c
@@ -127,7 +127,7 @@  int blocklevel_read(struct blocklevel_device *bl, uint64_t pos, void *buf, uint6
 
 	ecc_protection = ecc_protected(bl, pos, len, &ecc_start);
 
-	FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s",
+	FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s\n",
 		__func__, pos, len, ecc_protection ?
 		(ecc_protection == -1 ? "partial" : "yes") : "no");
 
@@ -216,7 +216,7 @@  int blocklevel_write(struct blocklevel_device *bl, uint64_t pos, const void *buf
 
 	ecc_protection = ecc_protected(bl, pos, len, &ecc_start);
 
-	FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s",
+	FL_DBG("%s: 0x%" PRIx64 " for 0x%" PRIx64 " ecc=%s\n",
 		__func__, pos, len, ecc_protection ?
 		(ecc_protection == -1 ? "partial" : "yes") : "no");