This is an automated email from the ASF dual-hosted git repository.
maskit 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 6ac53e6 Fix typo in HdrHeap
6ac53e6 is described below
commit 6ac53e6487e7ccd691530a59393491d6baf64228
Author: Shinya Kawano <[email protected]>
AuthorDate: Wed Dec 26 15:19:21 2018 +0900
Fix typo in HdrHeap
---
proxy/hdrs/HdrHeap.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxy/hdrs/HdrHeap.cc b/proxy/hdrs/HdrHeap.cc
index 38fe92f..27d4b3a 100644
--- a/proxy/hdrs/HdrHeap.cc
+++ b/proxy/hdrs/HdrHeap.cc
@@ -951,7 +951,7 @@ HdrHeap::unmarshal(int buf_length, int obj_type,
HdrHeapObjImpl **found_obj, Ref
// Nothing to do
break;
default:
- fprintf(stderr, "WARNING: Unmarshal failed due to unknow obj type %d
after %d bytes", (int)obj->m_type,
+ fprintf(stderr, "WARNING: Unmarshal failed due to unknown obj type %d
after %d bytes", (int)obj->m_type,
(int)(obj_data - (char *)this));
dump_heap(unmarshal_size);
return -1;