X-Git-Url: https://repo.jachan.dev/J-linux.git/blobdiff_plain/9721f0e8455c05f3fb7a91569cd7145f446e22b7..c235698355fa94df7073b51befda7d4be00a0e23:/lib/mpi/mpiutil.c diff --git a/lib/mpi/mpiutil.c b/lib/mpi/mpiutil.c index bc81419f400c..aa8c46544af8 100644 --- a/lib/mpi/mpiutil.c +++ b/lib/mpi/mpiutil.c @@ -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;