1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Various const fixes

This commit is contained in:
Paul Bakker
2013-11-25 13:29:43 +01:00
parent 17d99fc6f2
commit 8fc30b178c
6 changed files with 26 additions and 26 deletions

View File

@@ -60,7 +60,7 @@ int main( int argc, char *argv[] )
#else
#if defined(VERBOSE)
static void dump_buf( char *title, unsigned char *buf, size_t len )
static void dump_buf( const char *title, unsigned char *buf, size_t len )
{
size_t i;
@@ -71,7 +71,7 @@ static void dump_buf( char *title, unsigned char *buf, size_t len )
printf( "\n" );
}
static void dump_pubkey( char *title, ecdsa_context *key )
static void dump_pubkey( const char *title, ecdsa_context *key )
{
unsigned char buf[300];
size_t len;