diff --git a/ve/ve2400.cpp b/ve/ve2400.cpp index b27d3b66a..ed775a6a1 100755 --- a/ve/ve2400.cpp +++ b/ve/ve2400.cpp @@ -721,7 +721,8 @@ bool TMask_anamag::generate_code(int type, const char * codart) return false; } progr++; - TString fmt(format("%%s%%0%dld", code.len() - len)); + TString fmt; + fmt.format("%%s%%0%dld", code.len() - len); _generated_code.format(fmt, (const char *)scod, progr); } return true;