Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
8240231: Build failure on illumos after 8238988
Browse files Browse the repository at this point in the history
Add missing cast

Reviewed-by: dcubed, shade
  • Loading branch information
ptribble authored and Daniel D. Daugherty committed Feb 28, 2020
1 parent bd25c0e commit 0cd6d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/os_cpu/solaris_x86/thread_solaris_x86.cpp
Expand Up @@ -89,7 +89,7 @@ bool JavaThread::pd_get_top_frame(frame* fr_addr,
ret_fp = NULL;
} else {
// sp is reasonable is fp reasonable?
if (!jt->is_in_stack_range_incl((address)ret_fp, ret_sp)) {
if (!jt->is_in_stack_range_incl((address)ret_fp, (address)ret_sp)) {
ret_fp = NULL;
}
}
Expand Down

0 comments on commit 0cd6d13

Please sign in to comment.