mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
4718400
: Many quantities are held as signed that should be unsigned
Reviewed-by: coleenp, rbackman, dholmes
This commit is contained in:
parent
168081efc8
commit
93be099ccb
52 changed files with 95 additions and 110 deletions
|
@ -201,7 +201,7 @@ static void print_objects(JavaThread* deoptee_thread,
|
|||
if (obj.is_null()) {
|
||||
st.print(" allocation failed");
|
||||
} else {
|
||||
st.print(" allocated (%d bytes)", obj->size() * HeapWordSize);
|
||||
st.print(" allocated (" SIZE_FORMAT " bytes)", obj->size() * HeapWordSize);
|
||||
}
|
||||
st.cr();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue