diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-03-25 13:36:28 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-03-25 14:53:37 +0100 |
commit | 704a39769719d2e1ae3f13bfc562b51c9cd002d7 (patch) | |
tree | f6cca03fea11295dd7541c2632e5aa4d0082a9ff | |
parent | e3dfef8e3c85a64dbe6388117303f5819fa3c6a2 (diff) | |
download | ffmpeg-704a39769719d2e1ae3f13bfc562b51c9cd002d7.tar.gz |
rtmpdh: add an stdio.h include
The test uses printf.
-rw-r--r-- | libavformat/rtmpdh.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/rtmpdh.c b/libavformat/rtmpdh.c index f56a78495c..9f3a43fdfd 100644 --- a/libavformat/rtmpdh.c +++ b/libavformat/rtmpdh.c @@ -362,6 +362,9 @@ fail: } #ifdef TEST + +#include <stdio.h> + static int test_random_shared_secret(void) { FF_DH *peer1 = NULL, *peer2 = NULL; |