From 12c8912de2f2c1a235a7578d6a288e217c3fb504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 31 Aug 2012 00:51:49 +0300 Subject: [PATCH] crypto: Remove a stray double space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/crypto.c b/libavformat/crypto.c index 7095360c85..93c9f23f68 100644 --- a/libavformat/crypto.c +++ b/libavformat/crypto.c @@ -48,7 +48,7 @@ typedef struct { #define D AV_OPT_FLAG_DECODING_PARAM static const AVOption options[] = { {"key", "AES decryption key", OFFSET(key), AV_OPT_TYPE_BINARY, .flags = D }, - {"iv", "AES decryption initialization vector", OFFSET(iv), AV_OPT_TYPE_BINARY, .flags = D }, + {"iv", "AES decryption initialization vector", OFFSET(iv), AV_OPT_TYPE_BINARY, .flags = D }, { NULL } };