diff options
-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 da342ff210..3a620590ab 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) { - size_t remain = length; + ssize_t remain = length; char* c = buffer; if (!oneLine && !cStyle) { |