From 6735def16f1554c4fa015ee2134f81ed2ac625b9 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sun, 29 Nov 2015 21:45:47 +0000 Subject: [PATCH] * fixed jvm compilation after r32517 git-svn-id: trunk@32549 - --- compiler/jvm/njvmcnv.pas | 2 +- compiler/jvm/njvmcon.pas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/jvm/njvmcnv.pas b/compiler/jvm/njvmcnv.pas index 66d642698e..957a69fd0e 100644 --- a/compiler/jvm/njvmcnv.pas +++ b/compiler/jvm/njvmcnv.pas @@ -476,7 +476,7 @@ implementation { get the class representing the primitive type } fvs:=search_struct_member(tobjectdef(corrclass),'FTYPE'); newpara:=nil; - if not handle_staticfield_access(fvs,false,newpara) then + if not handle_staticfield_access(fvs,newpara) then internalerror(2011072417); end else diff --git a/compiler/jvm/njvmcon.pas b/compiler/jvm/njvmcon.pas index 248ea69def..0f8a77fc0e 100644 --- a/compiler/jvm/njvmcon.pas +++ b/compiler/jvm/njvmcon.pas @@ -125,7 +125,7 @@ implementation { c) create loadnode of the field } result:=nil; - if not handle_staticfield_access(classfield,false,result) then + if not handle_staticfield_access(classfield,result) then internalerror(2011062606); end;