commit | ff60ee6c2af5512ff67ad9f4f2dc193133a99016 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Tue Mar 16 21:09:09 2010 +0000 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Mar 16 21:09:09 2010 +0000 |
tree | d1ca3872b2eb12e2c679b3cea74d8ed0325b812b | |
parent | 9120018f3df6563920b1cafc60146e795d998818 [diff] [blame] |
- Added const-correctness to main codebase
diff --git a/programs/test/ssl_test.c b/programs/test/ssl_test.c index 6ba4069..f12c2e9 100644 --- a/programs/test/ssl_test.c +++ b/programs/test/ssl_test.c
@@ -113,7 +113,7 @@ return( u ); } -void my_debug( void *ctx, int level, char *str ) +void my_debug( void *ctx, int level, const char *str ) { if( level < ((struct options *) ctx)->debug_level ) fprintf( stderr, "%s", str );