diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-11 02:32:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-11 02:32:08 +0000 |
commit | 32f40ace25699ae28b711d6967934a9ff4ccb2f3 (patch) | |
tree | b9f71609dbab34e8bd571fe966f30ac9f5b95d6e /libavutil/sha.c | |
parent | cc1e807f4ccf70538f34a50e2248b6831e74465e (diff) | |
download | ffmpeg-32f40ace25699ae28b711d6967934a9ff4ccb2f3.tar.gz |
sha: add missing include
Originally committed as revision 22449 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/sha.c')
-rw-r--r-- | libavutil/sha.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/sha.c b/libavutil/sha.c index 7d14efc6f2..5a3b57535f 100644 --- a/libavutil/sha.c +++ b/libavutil/sha.c @@ -22,6 +22,7 @@ */ #include <string.h> +#include "avutil.h" #include "bswap.h" #include "sha.h" #include "sha1.h" |