diff options
| author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-01-14 15:16:00 +0000 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-04-11 10:59:41 +0200 |
| commit | 2be47cd0a3dd607963e0ac4524488caab93c1724 (patch) | |
| tree | 7e0fad83a8429ecda422371d9e710600d4996397 | |
| parent | 8930a03c2696bc461bebf340dec2ba85e9c06e14 (diff) | |
MPILIB: Fix obvious but harmless typo
The macro MPN_COPY_INCR this occurs in isn't used anywhere.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: David Howells <dhowells@redhat.com>
| -rw-r--r-- | lib/mpi/mpi-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mpi/mpi-internal.h b/lib/mpi/mpi-internal.h index 60cf76562..c65dd1bff 100644 --- a/lib/mpi/mpi-internal.h +++ b/lib/mpi/mpi-internal.h @@ -84,7 +84,7 @@ static inline int RESIZE_IF_NEEDED(MPI a, unsigned b) do { \ mpi_size_t _i; \ for (_i = 0; _i < (n); _i++) \ - (d)[_i] = (d)[_i]; \ + (d)[_i] = (s)[_i]; \ } while (0) #define MPN_COPY_DECR(d, s, n) \ |
