mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-24 00:04:58 +01:00
Use size_t to fix the build on mac.
Change-Id: Id145bdb711eea9ee33bcd9f258ff3befd6e7e86b Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2465487 Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
a9afca9c06
commit
78180df608
1 changed files with 1 additions and 1 deletions
|
|
@ -293,7 +293,7 @@ class RangeListReader {
|
|||
// Convenience functions to handle the mechanics of reading entries in the
|
||||
// ranges section.
|
||||
uint64_t ReadULEB(uint64_t offset, uint64_t* value) {
|
||||
uint64_t len;
|
||||
size_t len;
|
||||
*value = reader_->ReadUnsignedLEB128(cu_info_->buffer_ + offset, &len);
|
||||
return len;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue