From 6ddc1550dc3c0e695526e673dfbfc03912b7fe7f Mon Sep 17 00:00:00 2001 Message-Id: <6ddc1550dc3c0e695526e673dfbfc03912b7fe7f.1715885370.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 12 Dec 2017 20:21:39 +0000 Subject: [PATCH] symm/poly1305.c: Fix daft typo in banner comment. Organization: Straylight/Edgeware From: Mark Wooding --- symm/poly1305.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symm/poly1305.c b/symm/poly1305.c index 942aa384..d237d4e7 100644 --- a/symm/poly1305.c +++ b/symm/poly1305.c @@ -183,7 +183,7 @@ static void mul_r(const poly1305_ctx *ctx, felt z, const felt x) #endif -/*----- Low-level implementation for 32/64-bit targets --------------------*/ +/*----- Low-level implementation for 16/32-bit targets --------------------*/ #ifndef POLY1305_IMPL # define POLY1305_IMPL 11 -- [mdw]