X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/1c3d4cf54a0edd484c4405f5332d39bb17f1aee0..5937940fc6c45b93eb95554996d1cd1b5a1bf307:/math/mpgen diff --git a/math/mpgen b/math/mpgen index 4ed4f16..683970f 100644 --- a/math/mpgen +++ b/math/mpgen @@ -265,7 +265,7 @@ def m_mplimits_c(): i = 0 sep = "\n " for x in v: - stdout.write("%s%s_MP(limits_%d)\n" % (sep, x < 0 and "NEG" or "POS", i)) + stdout.write("%s%s_MP(limits_%d)" % (sep, x < 0 and "NEG" or "POS", i)) i += 1 sep = ",\n " stdout.write("\n};\n");