diff options
author | Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr> | 2017-06-09 13:10:02 +0200 |
---|---|---|
committer | Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr> | 2017-06-09 13:10:02 +0200 |
commit | 0b0fe36cbc95a483d205d3f86fea579f0cdd5f59 (patch) | |
tree | 7373a1afe1310d79af1953dc086abdd4b22769d4 | |
parent | e3bff273518853e34c86719ce86fa72f1b5ba3b1 (diff) |
printf removed
Change-Id: I134cd3bd5d7070211d78a3f8dff9bbf0f2f30308
Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
-rw-r--r-- | Common/ViperBuffer.cpp | 1 | ||||
-rw-r--r-- | Input/ICNConnectionConsumerApi.cpp | 1 |
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) |