Commit cf069c3b authored by Slark Xiao's avatar Slark Xiao Committed by Andrew Morton
Browse files

lib/mpi: fix typo 'the the' in comment

Replace 'the the' with 'the' in the comment.

Link: https://lkml.kernel.org/r/20220722101922.81126-1-slark_xiao@163.com


Signed-off-by: default avatarSlark Xiao <slark_xiao@163.com>
Cc: Hongbo Li <herberthbli@tencent.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent ed8fb78d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -272,7 +272,7 @@ MPI mpi_set_ui(MPI w, unsigned long u)
	if (!w)
		w = mpi_alloc(1);
	/* FIXME: If U is 0 we have no need to resize and thus possible
	 * allocating the the limbs.
	 * allocating the limbs.
	 */
	RESIZE_IF_NEEDED(w, 1);
	w->d[0] = u;