Skip to content

Commit 7001a11

Browse files
committed
fixes #223
1 parent 3edb073 commit 7001a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/convert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ SEXP R_reorder(SEXP R_src, SEXP R_num_rows, SEXP R_num_cols, SEXP R_item_size, S
15871587
hsize_t item_size = SEXP_to_longlong(R_item_size, 0);
15881588

15891589
SEXP R_helper = PROTECT(RToH5(R_new_order, H5T_NATIVE_ULLONG, num_rows));
1590-
hsize_t* new_order = (unsigned long long *) VOIDPTR(R_helper);
1590+
hsize_t* new_order = (hsize_t*) VOIDPTR(R_helper);
15911591

15921592
SEXP R_dst = PROTECT(duplicate(R_src));
15931593
reorder(VOIDPTR(R_dst), VOIDPTR(R_src), num_rows, num_cols, item_size, new_order);

0 commit comments

Comments
 (0)