From c7a23204ba5fac04245b38034751f76fe41e01b6 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 6 Aug 2013 18:47:50 +0100 Subject: [PATCH] math/mpgen: Remove spurious newlines in `mplimits.c'. --- math/mpgen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.11.0