comparison src/share/vm/graal/graalRuntime.cpp @ 16291:da8f16efaa4c

explicit conversion to (int), fixes Windows build
author Christian Wirth <christian.wirth@oracle.com>
date Mon, 30 Jun 2014 15:45:41 +0200
parents 7af7db0bbfe9
children ad431bf0de07
comparison
equal deleted inserted replaced
16290:e6622e77e8c7 16291:da8f16efaa4c
776 } 776 }
777 777
778 if (!recognized) { 778 if (!recognized) {
779 bool throw_err = hotSpotOptionsClass.is_null(); 779 bool throw_err = hotSpotOptionsClass.is_null();
780 if (!hotSpotOptionsClass.is_null()) { 780 if (!hotSpotOptionsClass.is_null()) {
781 set_option_helper(hotSpotOptionsClass, name, name_len, Handle(), ' ', Handle(), 0L); 781 set_option_helper(hotSpotOptionsClass, name, (int)name_len, Handle(), ' ', Handle(), 0L);
782 if (!HAS_PENDING_EXCEPTION) { 782 if (!HAS_PENDING_EXCEPTION) {
783 throw_err = true; 783 throw_err = true;
784 } 784 }
785 } 785 }
786 786