diff options
author | Dan Williams <dan.j.williams@intel.com> | 2022-10-01 19:16:16 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2022-10-01 19:16:16 -0700 |
commit | 305a72efa791c826fe84768ca55e31adc4113ea8 (patch) | |
tree | 35c72646ea4b81528d73d3d79650004abed3285b /lib/mpi/mpiutil.c | |
parent | 53fc59511fc4c567342b2ef3f7b99a086430e0b4 (diff) | |
parent | 6a02124c87f0b61dcaaeb65e7fd406d8afb40fd4 (diff) |
Merge branch 'for-6.1/nvdimm' into libnvdimm-for-next
Add v6.1 content on top of some straggling updates that missed v6.0.
Diffstat (limited to 'lib/mpi/mpiutil.c')
-rw-r--r-- | lib/mpi/mpiutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |