Skip to content

Commit

Permalink
fix: replacing WARNING with %str(WARN)ING to avoid being caught in se…
Browse files Browse the repository at this point in the history
…arches for mf_getattrn
  • Loading branch information
allanbowe committed Jan 31, 2021
1 parent b5c86e7 commit 4a6c8ff
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 @@ -404,7 +404,7 @@ options noquotelenmax;
%local dsid rc;
%let dsid=%sysfunc(open(&libds,is));
%if &dsid = 0 %then %do;
%put WARNING: Cannot open %trim(&libds), system message below;
%put %str(WARN)ING: Cannot open %trim(&libds), system message below;
%put %sysfunc(sysmsg());
-1
%end;
Expand Down
2 changes: 1 addition & 1 deletion base/mf_getattrn.sas
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
%local dsid rc;
%let dsid=%sysfunc(open(&libds,is));
%if &dsid = 0 %then %do;
%put WARNING: Cannot open %trim(&libds), system message below;
%put %str(WARN)ING: Cannot open %trim(&libds), system message below;
%put %sysfunc(sysmsg());
-1
%end;
Expand Down

0 comments on commit 4a6c8ff

Please sign in to comment.