From 0b0fe36cbc95a483d205d3f86fea579f0cdd5f59 Mon Sep 17 00:00:00 2001 From: "Angelo Mantellini (manangel)" Date: Fri, 9 Jun 2017 13:10:02 +0200 Subject: printf removed Change-Id: I134cd3bd5d7070211d78a3f8dff9bbf0f2f30308 Signed-off-by: Angelo Mantellini (manangel) --- Common/ViperBuffer.cpp | 1 - Input/ICNConnectionConsumerApi.cpp | 1 - 2 files changed, 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) -- cgit 1.2.3-korg