Skip to content

Commit 4a166ff

Browse files
committed
delete extra spaces
1 parent db6b6b9 commit 4a166ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reorder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SEXP reorder(SEXP x, SEXP order)
3030
} else {
3131
if (RTYPE_SIZEOF(x)!=4 && RTYPE_SIZEOF(x)!=8 && RTYPE_SIZEOF(x)!=16 && RTYPE_SIZEOF(x)!=1)
3232
error(_("reorder accepts vectors but this non-VECSXP is type '%s' which isn't yet supported (RTYPE_SIZEOF=%zu)"), type2char(TYPEOF(x)), RTYPE_SIZEOF(x));
33-
if (ALTREP(x)) internal_error(__func__, "cannot reorder an ALTREP vector. Please see NEWS item 2 in v1.11.4"); // # nocov
33+
if (ALTREP(x)) internal_error(__func__, "cannot reorder an ALTREP vector. Please see NEWS item 2 in v1.11.4"); // # nocov
3434
maxSize = RTYPE_SIZEOF(x);
3535
nrow = length(x);
3636
ncol = 1;

0 commit comments

Comments
 (0)