dcsctp: Fixed parameter name typo
Late review comments from https://webrtc-review.googlesource.com/c/src/+/213180 Bug: webrtc:12614 Change-Id: I61471902b50c6a08092a1fa9d3a03202c95177d0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/214486 Reviewed-by: Tommi <tommi@webrtc.org> Commit-Queue: Victor Boivie <boivie@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33665}
This commit is contained in:

committed by
Commit Bot

parent
5c5e8011e7
commit
10aaa3f1e7
@ -28,7 +28,7 @@ namespace dcsctp {
|
|||||||
namespace tlv_trait_impl {
|
namespace tlv_trait_impl {
|
||||||
// Logging functions, only to be used by TLVTrait, which is a templated class.
|
// Logging functions, only to be used by TLVTrait, which is a templated class.
|
||||||
void ReportInvalidSize(size_t actual_size, size_t expected_size);
|
void ReportInvalidSize(size_t actual_size, size_t expected_size);
|
||||||
void ReportInvalidType(int acutal_type, int expected_type);
|
void ReportInvalidType(int actual_type, int expected_type);
|
||||||
void ReportInvalidFixedLengthField(size_t value, size_t expected);
|
void ReportInvalidFixedLengthField(size_t value, size_t expected);
|
||||||
void ReportInvalidVariableLengthField(size_t value, size_t available);
|
void ReportInvalidVariableLengthField(size_t value, size_t available);
|
||||||
void ReportInvalidPadding(size_t padding_bytes);
|
void ReportInvalidPadding(size_t padding_bytes);
|
||||||
|
Reference in New Issue
Block a user