Skip to content
Snippets Groups Projects
Commit 9123f080 authored by Mick Jordan's avatar Mick Jordan
Browse files

fix sysframe regression

parent 75c2cd84
Branches
No related tags found
No related merge requests found
......@@ -98,8 +98,8 @@ public class FrameFunctions {
}
@Specialization
protected REnvironment sysFrame(VirtualFrame frame, double nd) {
return sysFrame(frame, (int) nd);
protected REnvironment sysFrame(double nd) {
return sysFrame((int) nd);
}
}
......@@ -152,8 +152,8 @@ public class FrameFunctions {
}
@Specialization
protected Object sysFunction(VirtualFrame frame, double nd) {
return sysFunction(frame, (int) nd);
protected Object sysFunction(double nd) {
return sysFunction((int) nd);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment