diff options
author | Werner Koch <[email protected]> | 1998-02-03 12:09:20 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-02-03 12:09:20 +0000 |
commit | 899b8378eca7a3801d02bab5fb4cd13dfb6a8595 (patch) | |
tree | 71b685933a39dfbdc7d6801775dc2c6ff99aeddf /mpi/mpiutil.c | |
parent | changed structure of trustdb (diff) | |
download | gnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.tar.gz gnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.zip |
Fixed a few bugs
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 |