This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 7d75800fc889e286636446f45429a667cedda7cd
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)
    
    (cherry picked from commit 52498925b2341e5e56f2b4e61aecbafc1de996ae)
---
 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);

Reply via email to