Skip to content

Commit e4e5d8c

Browse files
missing ';'
1 parent 3758316 commit e4e5d8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mergelist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ SEXP cbindlist(SEXP x, SEXP copyArg) {
7373
for (int i=0, ians=0; i<nx; ++i) {
7474
int protecti =0;
7575
SEXP thisx = VECTOR_ELT(x, i);
76-
SEXP thisnames = PROTECT(getAttrib(thisx, R_NamesSymbol)); protecti++
76+
SEXP thisnames = PROTECT(getAttrib(thisx, R_NamesSymbol)); protecti++;
7777
for (int j=0; j<nnx[i]; ++j, ++ians) {
7878
SEXP thisxcol;
7979
if (copy) {

0 commit comments

Comments
 (0)