summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_ass.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-18 09:30:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-18 09:30:42 +0000
commit1660e3c1238f7fc9bba1426c7732e71b0d03505e (patch)
tree9da22c0487f1e765bb57e0373c0045d646afb243 /libmpcodecs/vf_ass.c
parent5da49e10497fd8a15c919f6349c120d691d220b7 (diff)
downloadmpv-1660e3c1238f7fc9bba1426c7732e71b0d03505e.tar.bz2
mpv-1660e3c1238f7fc9bba1426c7732e71b0d03505e.tar.xz
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. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24565 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf_ass.c')
-rw-r--r--libmpcodecs/vf_ass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf_ass.c b/libmpcodecs/vf_ass.c
index f88ed99eca..9ce50cf006 100644
--- a/libmpcodecs/vf_ass.c
+++ b/libmpcodecs/vf_ass.c
@@ -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"