Skip to content

Commit 9eac0bc

Browse files
Copilotithewei
andauthored
Fix typo: ENCODE_BY_LITTEL_ENDIAN → ENCODE_BY_LITTLE_ENDIAN (#825)
* Initial plan * Fix typo: ENCODE_BY_LITTEL_ENDIAN → ENCODE_BY_LITTLE_ENDIAN Agent-Logs-Url: https://github.com/ithewei/libhv/sessions/8e4ecff3-c8d8-43af-b29d-336c92e28c28 Co-authored-by: ithewei <26049660+ithewei@users.noreply.github.com> * Remove backward compatibility for little endian encoding Removed backward compatibility definition for ENCODE_BY_LITTEL_ENDIAN. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ithewei <26049660+ithewei@users.noreply.github.com> Co-authored-by: ithewei <ithewei@163.com>
1 parent 62cd137 commit 9eac0bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

event/hloop.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ typedef enum {
497497
// UNPACK_BY_LENGTH_FIELD
498498
typedef enum {
499499
ENCODE_BY_VARINT = 17, // 1 MSB + 7 bits
500-
ENCODE_BY_LITTEL_ENDIAN = LITTLE_ENDIAN, // 1234
500+
ENCODE_BY_LITTLE_ENDIAN = LITTLE_ENDIAN, // 1234
501501
ENCODE_BY_BIG_ENDIAN = BIG_ENDIAN, // 4321
502502
ENCODE_BY_ASN1 = 80, // asn1 decode int
503503
} unpack_coding_e;

0 commit comments

Comments
 (0)