From 24db08b011a0fcabd798f69d73388d48ab2bc736 Mon Sep 17 00:00:00 2001 From: martii Date: Sat, 25 May 2013 11:24:32 +0200 Subject: [PATCH] libspark/video: add missing newline Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/e68c20dfbeaec6db37df6e1765624edfc631c38e Author: martii Date: 2013-05-25 (Sat, 25 May 2013) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libspark/video.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libspark/video.cpp b/libspark/video.cpp index 0c83bee..bd75a28 100644 --- a/libspark/video.cpp +++ b/libspark/video.cpp @@ -425,7 +425,11 @@ void cVideo::ShowPicture(const char * fname) mfd = open(destname, O_RDONLY); if (mfd < 0) { +#ifdef MARTII + lt_info("%s cannot open %s: %m\n", __func__, destname); +#else lt_info("%s cannot open %s: %m", __func__, destname); +#endif goto out; } fstat(mfd, &st);