From 86bbc7fc30ba568815b0f5a256b3d9afa5b2bfca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Sat, 12 Jul 2014 02:14:41 +0200 Subject: [PATCH] Fix typo causing compile error with NULL cipher --- library/cipher_wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index 47a69a97b2..ab2f9bc6ee 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c @@ -1313,7 +1313,7 @@ static int null_setkey( void *ctx, const unsigned char *key, static void * null_ctx_alloc( void ) { - return( (void *) 1 ) + return( (void *) 1 ); } static void null_ctx_free( void *ctx )