From 27dc0847b3fcbbd13ced4ace2d31a0ed080d3ef1 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 24 Nov 2019 22:45:14 +0000 Subject: [PATCH] ec.c (ecptxl_1): Preparatory reformatting. Gentle vertical compression. --- ec.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ec.c b/ec.c index 1e3eb99..770e71d 100644 --- a/ec.c +++ b/ec.c @@ -521,10 +521,8 @@ static int ecptxl_1(ec_curve *c, ec *p, PyObject *x) getecptout(p, x); goto fix; } else if (TEXT_CHECK(x)) { - qd.p = TEXT_PTR(x); - qd.e = 0; - if (!ec_ptparse(&qd, p)) - VALERR(qd.e); + qd.p = TEXT_PTR(x); qd.e = 0; + if (!ec_ptparse(&qd, p)) VALERR(qd.e); qd_skipspc(&qd); if (!qd_eofp(&qd)) VALERR("junk at eof"); goto fix; } else if (c && (xx = tomp(x)) != 0) { -- 2.11.0