mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 15:33:00 +02:00
libeplayer: reduce debugging output
This commit is contained in:
@@ -952,7 +952,7 @@ static int Write(void *_context, void* _out)
|
||||
if (writer->writeData)
|
||||
res = writer->writeData(&call);
|
||||
|
||||
if (res <= 0)
|
||||
if (res < 0)
|
||||
{
|
||||
linuxdvb_err("failed to write data %d - %d\n", res, errno);
|
||||
linuxdvb_err("%s\n", strerror(errno));
|
||||
@@ -994,7 +994,7 @@ static int Write(void *_context, void* _out)
|
||||
if (writer->writeData)
|
||||
res = writer->writeData(&call);
|
||||
|
||||
if (res <= 0)
|
||||
if (res < 0)
|
||||
{
|
||||
linuxdvb_err("failed to write data %d - %d\n", res, errno);
|
||||
linuxdvb_err("%s\n", strerror(errno));
|
||||
|
Reference in New Issue
Block a user