Skip to content

Commit

Permalink
MPILIB: Fix obvious but harmless typo
Browse files Browse the repository at this point in the history
The macro MPN_COPY_INCR this occurs in isn't used anywhere.

Signed-off-by: Rasmus Villemoes <[email protected]>
Signed-off-by: David Howells <[email protected]>
  • Loading branch information
Villemoes authored and dhowells committed Jan 14, 2015
1 parent 7fe2129 commit 98dbbcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mpi/mpi-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 98dbbcb

Please sign in to comment.