src/share/vm/gc_implementation/shared/adaptiveSizePolicy.cpp

changeset 4129
22b8d3d181d9
parent 3294
bca17e38de00
child 5192
14d3f71f831d
     1.1 --- a/src/share/vm/gc_implementation/shared/adaptiveSizePolicy.cpp	Wed Oct 03 08:08:52 2012 -0700
     1.2 +++ b/src/share/vm/gc_implementation/shared/adaptiveSizePolicy.cpp	Wed Oct 03 20:31:41 2012 +0200
     1.3 @@ -642,7 +642,7 @@
     1.4  
     1.5  bool AdaptiveSizePolicy::print_adaptive_size_policy_on(
     1.6                                              outputStream* st,
     1.7 -                                            int tenuring_threshold_arg) const {
     1.8 +                                            uint tenuring_threshold_arg) const {
     1.9    if (!AdaptiveSizePolicy::print_adaptive_size_policy_on(st)) {
    1.10      return false;
    1.11    }
    1.12 @@ -663,7 +663,7 @@
    1.13      assert(!tenuring_threshold_change(), "(no change was attempted)");
    1.14    }
    1.15    if (tenuring_threshold_changed) {
    1.16 -    st->print_cr("%d", tenuring_threshold_arg);
    1.17 +    st->print_cr("%u", tenuring_threshold_arg);
    1.18    }
    1.19    return true;
    1.20  }

mercurial