From 565134d4c4787d3b9cbe1f661558fa796e341b4d Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sat, 31 Aug 2013 17:59:24 +0200 Subject: [PATCH] Add missing \n in a printf() --- examples/doc/quick_start_example1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/doc/quick_start_example1.c b/examples/doc/quick_start_example1.c index 09f3e3a..3c6f5d2 100644 --- a/examples/doc/quick_start_example1.c +++ b/examples/doc/quick_start_example1.c @@ -49,7 +49,7 @@ main(int argc, const char *argv[]) pnd = nfc_open(context, NULL); if (pnd == NULL) { - printf("ERROR: %s", "Unable to open NFC device."); + printf("ERROR: %s\n", "Unable to open NFC device."); exit(EXIT_FAILURE); } // Set opened NFC device to initiator mode