changeset 24545:9e5126679d44

Replace stdint.h #include by functionally equivalent inttypes.h. The use of inttypes.h is more common throughout MPlayer and stdint.h can create problems on obscure systems like HP-UX, see Bugzilla #831.
author diego
date Tue, 18 Sep 2007 09:30:42 +0000
parents b6a7f21f4d47
children 4caae720ab5b
files libmpcodecs/vf_ass.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_ass.c	Tue Sep 18 08:56:51 2007 +0000
+++ b/libmpcodecs/vf_ass.c	Tue Sep 18 09:30:42 2007 +0000
@@ -23,7 +23,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <assert.h>
 
 #include "config.h"