diff options
author | 2020-11-13 20:53:12 +0900 | |
---|---|---|
committer | 2020-11-16 19:43:52 +0900 | |
commit | 16c6e7073231dc9e9a775acb5aa5c456ca38851f (patch) | |
tree | aae9235f8ae9a132795cca71b2553b1bbc93d434 /libs/binder/Debug.cpp | |
parent | 276781add64288a00c2e3c4fc39a5f806a6e140f (diff) |
binder: fix google-runtime-int
Bug: 162909698
Test: m libbinder
Change-Id: I63ec0e57166a97711d254156bde04ffe155465a5
Diffstat (limited to 'libs/binder/Debug.cpp')
-rw-r--r-- | libs/binder/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Debug.cpp b/libs/binder/Debug.cpp index 64c1ff68c0..da342ff210 100644 --- a/libs/binder/Debug.cpp +++ b/libs/binder/Debug.cpp @@ -208,7 +208,7 @@ void printHexData(int32_t indent, const void *buf, size_t length, } for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) { - long remain = length; + size_t remain = length; char* c = buffer; if (!oneLine && !cStyle) { |