Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Rasmus Villemoes and committed by
David Howells
98dbbcba 7fe21291

+1 -1
+1 -1
lib/mpi/mpi-internal.h
··· 84 84 do { \ 85 85 mpi_size_t _i; \ 86 86 for (_i = 0; _i < (n); _i++) \ 87 - (d)[_i] = (d)[_i]; \ 87 + (d)[_i] = (s)[_i]; \ 88 88 } while (0) 89 89 90 90 #define MPN_COPY_DECR(d, s, n) \