Skip to content
Snippets Groups Projects
Commit 957534be authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix wrong dimensions in Rf_allocMatrix

parent 1b211db6
Branches
No related tags found
No related merge requests found
......@@ -510,7 +510,7 @@ public class CallRFFIHelper {
}
public static Object Rf_allocateMatrix(int mode, int ncol, int nrow) {
public static Object Rf_allocateMatrix(int mode, int nrow, int ncol) {
if (RFFIUtils.traceEnabled()) {
RFFIUtils.traceUpCall("Rf_allocateMatrix", mode, ncol, nrow);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment