diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-06-01 11:27:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-01 11:28:01 +0200 |
commit | 8939667b7087c71067a005b8473ded0e47c74259 (patch) | |
tree | f2b4c6bee37281f131cc89f823ead91ad4ff93fc /libavformat | |
parent | f10497042f092d56f82f536276d5998d7fd1e4c4 (diff) | |
parent | 84c5ff911f3f0557c8f97a964f74ceb01dd6d214 (diff) | |
download | ffmpeg-8939667b7087c71067a005b8473ded0e47c74259.tar.gz |
Merge commit '84c5ff911f3f0557c8f97a964f74ceb01dd6d214'
* commit '84c5ff911f3f0557c8f97a964f74ceb01dd6d214':
rtmpdh: Fix the indentation in a struct
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtmpdh.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/rtmpdh.h b/libavformat/rtmpdh.h index e498f5608f..14fd222182 100644 --- a/libavformat/rtmpdh.h +++ b/libavformat/rtmpdh.h @@ -38,11 +38,11 @@ typedef gcry_mpi_t FFBigNum; #endif typedef struct FF_DH { - FFBigNum p; - FFBigNum g; - FFBigNum pub_key; - FFBigNum priv_key; - long length; + FFBigNum p; + FFBigNum g; + FFBigNum pub_key; + FFBigNum priv_key; + long length; } FF_DH; #elif CONFIG_OPENSSL |