libspark/video: add missing newline

Origin commit data
------------------
Branch: master
Commit: e68c20dfbe
Author: martii <m4rtii@gmx.de>
Date: 2013-05-25 (Sat, 25 May 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-05-25 11:24:32 +02:00
parent 9d9d703dbd
commit 24db08b011

View File

@@ -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);