This is an automated email from the ASF dual-hosted git repository.
wkaras pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 52498925b2 Remove unused length parameter in the
plugin/multiplexer/dispatch.cc (#11393)
52498925b2 is described below
commit 52498925b2341e5e56f2b4e61aecbafc1de996ae
Author: Pavel Vazharov <[email protected]>
AuthorDate: Wed Jun 5 17:19:05 2024 +0300
Remove unused length parameter in the plugin/multiplexer/dispatch.cc
(#11393)
---
plugins/multiplexer/dispatch.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/multiplexer/dispatch.cc b/plugins/multiplexer/dispatch.cc
index d1614d4b6f..7047ed036b 100644
--- a/plugins/multiplexer/dispatch.cc
+++ b/plugins/multiplexer/dispatch.cc
@@ -130,7 +130,7 @@ read(const TSIOBufferReader &r, std::string &o, int64_t l =
0)
}
uint64_t
-read(const TSIOBuffer &b, std::string &o, const int64_t l = 0)
+read(const TSIOBuffer &b, std::string &o)
{
TSIOBufferReader reader = TSIOBufferReaderAlloc(b);
const uint64_t length = read(reader, o);