Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/read_workbook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ SEXP read_workbook(IntegerVector cols_in,
if(hasColNames){

int row_1 = rows[0];
char name[6];
char name[20];

IntegerVector row1_inds = which_cpp(rows == row_1);
IntegerVector header_cols = cols[row1_inds];
Expand Down Expand Up @@ -564,7 +564,7 @@ SEXP read_workbook(IntegerVector cols_in,


}else{ // else col_names is FALSE
char name[6];
char name[20];
for(int i =0; i < nCols; i++){
sprintf(&(name[0]), "X%d", i+1);
col_names[i] = name;
Expand Down