diff options
author | Mans Rullgard | 2011-07-03 17:51:02 +0100 |
---|---|---|
committer | Mans Rullgard | 2011-07-03 18:19:18 +0100 |
commit | 44496ff2d60d3f49b55ea794284504a16c2ba4c5 (patch) | |
tree | 86e93e75151c6612488d05ce08809e8189c42321 /libavutil | |
parent | edf4dbff33d8ab5653ecc9124bf4333cf05bab2a (diff) |
md5: include correct headers
This file needs stdint.h but not string.h
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/md5.c b/libavutil/md5.c index b0c678bc27..74e109b72d 100644 --- a/libavutil/md5.c +++ b/libavutil/md5.c @@ -30,7 +30,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <string.h> +#include <stdint.h> #include "bswap.h" #include "md5.h" |