mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Fix up naming of Base64 and Leb128 functions.
Change-Id: I80a2493d822b59311ba0d7bd68b5ccf0e3b29e6a
This commit is contained in:
@@ -191,7 +191,7 @@ bool WireDecoder::ReadString(NT_String* str) {
|
||||
str->len = v;
|
||||
} else {
|
||||
unsigned long v;
|
||||
if (!ReadULEB128(&v)) return false;
|
||||
if (!ReadUleb128(&v)) return false;
|
||||
str->len = v;
|
||||
}
|
||||
str->str = (char*)std::malloc(str->len + 1);
|
||||
|
||||
Reference in New Issue
Block a user