diff options
author | 2015-01-15 11:30:54 +1100 | |
---|---|---|
committer | 2015-01-15 11:30:54 +1100 | |
commit | bb31f607a0900552926ebf9ef3d002d96a43f7cc (patch) | |
tree | a6ae975240200606efa47fc0921f2a8f3d27af03 /lib/mpi/mpi-internal.h | |
parent | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (diff) | |
parent | MPILIB: Fix comparison of negative MPIs (diff) | |
download | linux-dev-bb31f607a0900552926ebf9ef3d002d96a43f7cc.tar.xz linux-dev-bb31f607a0900552926ebf9ef3d002d96a43f7cc.zip |
Merge tag 'keys-next-fixes-20150114' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs into next
Diffstat (limited to 'lib/mpi/mpi-internal.h')
-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 60cf765628e9..c65dd1bff45a 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) \ |