diff options
Diffstat (limited to '')
-rw-r--r-- | mpi/mpiutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpi/mpiutil.c b/mpi/mpiutil.c index 7515eafd1..09be317f2 100644 --- a/mpi/mpiutil.c +++ b/mpi/mpiutil.c @@ -103,7 +103,7 @@ mpi_alloc_limb_space( unsigned nlimbs, int secure ) size_t len = nlimbs * sizeof(mpi_limb_t); if( DBG_MEMORY ) - log_debug("mpi_alloc_limb_space(%u)\n", len*8 ); + log_debug("mpi_alloc_limb_space(%u)\n", (unsigned)len*8 ); #ifdef M_DEBUG return secure? m_debug_alloc_secure(len, info):m_debug_alloc( len, info ); #else |