aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Common/ViperBuffer.cpp1
-rw-r--r--Input/ICNConnectionConsumerApi.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/Common/ViperBuffer.cpp b/Common/ViperBuffer.cpp
index 90d10d63..27ec8b5e 100644
--- a/Common/ViperBuffer.cpp
+++ b/Common/ViperBuffer.cpp
@@ -85,7 +85,6 @@ qint64 ViperBuffer::writeData(libdash::framework::input::MediaObject* media)
ret = media->Read(readBuffer,readMax);
while(ret)
{
- printf("ret %d\n", ret);
total += ret;
this->writeData((const char *)readBuffer, ret);
ret = media->Read(readBuffer,readMax);
diff --git a/Input/ICNConnectionConsumerApi.cpp b/Input/ICNConnectionConsumerApi.cpp
index 62e9ecdf..d0b0c8c3 100644
--- a/Input/ICNConnectionConsumerApi.cpp
+++ b/Input/ICNConnectionConsumerApi.cpp
@@ -147,7 +147,6 @@ int ICNConnectionConsumerApi::Read(uint8_t *data, size_t len)
return len;
} else
{
- printf("minore uguale\n");
memcpy(data, (char*)response.data() + this->dataPos, response.size() - this->dataPos);
int length = response.size() - this->dataPos;
if (length == 0)