From 1d972fad11d7e57cedfb08471dbac3718461eabb Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Tue, 31 May 2022 22:42:40 +0000 Subject: [PATCH] fix: using outref instead of outloc in mm_getstpcode invocation from mx_getcode --- all.sas | 2 +- xplatform/mx_getcode.sas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/all.sas b/all.sas index 9de9248..f56cd48 100644 --- a/all.sas +++ b/all.sas @@ -26980,7 +26980,7 @@ Usage: %ms_getfile(&loc..sas, outref=&outref) %end; %else %if &platform=SAS9 or &platform=SASMETA %then %do; - %mm_getstpcode(tree=&loc,outloc=&outref) + %mm_getstpcode(tree=&loc,outref=&outref) %end; %else %if &platform=SASVIYA %then %do; /* extract name & path from &loc */ diff --git a/xplatform/mx_getcode.sas b/xplatform/mx_getcode.sas index 5920272..c5e5ead 100644 --- a/xplatform/mx_getcode.sas +++ b/xplatform/mx_getcode.sas @@ -35,7 +35,7 @@ %ms_getfile(&loc..sas, outref=&outref) %end; %else %if &platform=SAS9 or &platform=SASMETA %then %do; - %mm_getstpcode(tree=&loc,outloc=&outref) + %mm_getstpcode(tree=&loc,outref=&outref) %end; %else %if &platform=SASVIYA %then %do; /* extract name & path from &loc */