Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync forced CRAN changes #488

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
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