X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2Foutput%2Fcl_I_decstring.cc;h=14f82363b669830bf2cf00854164efa0a4bc890e;hb=5370ad8054201cf23d4f94a52f4d3f7f9f3cd511;hp=26f9b686a69cb9cefbdb4eecd718d877503725be;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/src/integer/output/cl_I_decstring.cc b/src/integer/output/cl_I_decstring.cc index 26f9b68..14f8236 100644 --- a/src/integer/output/cl_I_decstring.cc +++ b/src/integer/output/cl_I_decstring.cc @@ -18,7 +18,7 @@ namespace cln { char * cl_decimal_string (const cl_I& x) { CL_ALLOCA_STACK; - var uintL need = cl_digits_need(x,10); + var uintC need = cl_digits_need(x,10); var uintB* ziffern = cl_alloc_array(uintB,need); // Platz für die Ziffern var cl_digits erg; erg.LSBptr = &ziffern[need]; I_to_digits(x,10,&erg); // Umwandlung in Ziffern