author | Michael Krelin <hacker@klever.net> | 2006-12-06 17:16:12 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-12-06 17:16:12 (UTC) |
commit | 480c890f78b9fcf46e006ece0eab01f946ef6f59 (patch) (side-by-side diff) | |
tree | 2b80ff7d1f1facce1dfe08983dea95e92e81a9aa | |
parent | a22cf56603ca89efb73429fd3797a775ca908cff (diff) | |
download | sitecing-480c890f78b9fcf46e006ece0eab01f946ef6f59.zip sitecing-480c890f78b9fcf46e006ece0eab01f946ef6f59.tar.gz sitecing-480c890f78b9fcf46e006ece0eab01f946ef6f59.tar.bz2 |
fixes to exception_dev component
-rw-r--r-- | components/exception_dev | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/exception_dev b/components/exception_dev index d62f462..49b7f45 100644 --- a/components/exception_dev +++ b/components/exception_dev @@ -25,5 +25,5 @@ __SCIF->out->seekp(0); int magic = _magic; - va_list va = _args; + va_list va; va_copy(va,_args); switch(magic) { case sitecing::__magic_compile_error: @@ -327,4 +327,5 @@ return sitecing::strip_prefix(np,root_intermediate); }catch(sitecing::utility_no_prefix& e){ } + return np; </%codemethod> <%codemethod string remove_roots(const string& str) %> |