diff options
Diffstat (limited to '')
-rw-r--r-- | mpi/g10m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpi/g10m.c b/mpi/g10m.c index 6cad79587..28feaf08c 100644 --- a/mpi/g10m.c +++ b/mpi/g10m.c @@ -49,7 +49,7 @@ g10m_release( MPI a ) void g10m_resize( MPI a, unsigned nbits ) { - return mpi_resize( a, (nbits+BITS_PER_MPI_LIMB-1) / BITS_PER_MPI_LIMB ); + mpi_resize( a, (nbits+BITS_PER_MPI_LIMB-1) / BITS_PER_MPI_LIMB ); } MPI g10m_copy( MPI a ) { return mpi_copy( a ); } |