1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-15 04:20:05 +00:00

fix: warning in mp_getformats

This commit is contained in:
munja
2022-02-11 16:46:04 +01:00
parent 4fe6f233f2
commit 682d80b1b8
2 changed files with 4 additions and 4 deletions

View File

@@ -7131,10 +7131,10 @@ create table &outsummary as
select &&fmtname&i; select &&fmtname&i;
run; run;
data &tempds; data &tempds;
length label $256; if 0 then set &outdetail;
set &tempds; set &tempds;
run; run;
proc append base=&outdetail data=&tempds; proc append base=&outdetail data=&tempds ;
run; run;
%end; %end;
%end; %end;

View File

@@ -113,10 +113,10 @@ create table &outsummary as
select &&fmtname&i; select &&fmtname&i;
run; run;
data &tempds; data &tempds;
length label $256; if 0 then set &outdetail;
set &tempds; set &tempds;
run; run;
proc append base=&outdetail data=&tempds; proc append base=&outdetail data=&tempds ;
run; run;
%end; %end;
%end; %end;