diff options
author | Martin Storsjö <martin@martin.st> | 2015-05-30 22:19:35 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-06-01 10:38:54 +0300 |
commit | 84c5ff911f3f0557c8f97a964f74ceb01dd6d214 (patch) | |
tree | 66ddd749d2d3372828d9b50c6a5a7a7a859b9752 | |
parent | b08caa87c35a768ec0abb16b1e99c3a85f1df28e (diff) | |
download | ffmpeg-84c5ff911f3f0557c8f97a964f74ceb01dd6d214.tar.gz |
rtmpdh: Fix the indentation in a struct
Signed-off-by: Martin Storsjö <martin@martin.st>
-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 425113f78e..eab0b4adc8 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 |