Skip to content

Commit

Permalink
fix: increasing length of filepath/filename in mp_dirlist
Browse files Browse the repository at this point in the history
  • Loading branch information
^ committed May 9, 2024
1 parent 862b189 commit 2bdd83b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -4861,7 +4861,7 @@ data;run;
data &out_ds(compress=no
keep=file_or_folder filepath filename ext msg directory level
);
length directory filepath $500 fref fref2 $8 file_or_folder $6 filename $80
length directory filepath $2000 fref fref2 $8 file_or_folder $6 filename $255
ext $20 msg $200 foption $16;
if _n_=1 then call missing(of _all_);
retain level &level;
Expand Down
2 changes: 1 addition & 1 deletion base/mp_dirlist.sas
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ data;run;
data &out_ds(compress=no
keep=file_or_folder filepath filename ext msg directory level
);
length directory filepath $500 fref fref2 $8 file_or_folder $6 filename $80
length directory filepath $2000 fref fref2 $8 file_or_folder $6 filename $255
ext $20 msg $200 foption $16;
if _n_=1 then call missing(of _all_);
retain level &level;
Expand Down

0 comments on commit 2bdd83b

Please sign in to comment.