summaryrefslogtreecommitdiff
path: root/libavutil/md5.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-03 17:51:02 +0100
committerMans Rullgard <mans@mansr.com>2011-07-03 18:19:18 +0100
commit44496ff2d60d3f49b55ea794284504a16c2ba4c5 (patch)
tree86e93e75151c6612488d05ce08809e8189c42321 /libavutil/md5.c
parentedf4dbff33d8ab5653ecc9124bf4333cf05bab2a (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/md5.c')
-rw-r--r--libavutil/md5.c2
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"