[MPlayer-cvslog] r24565 - trunk/libmpcodecs/vf_ass.c

diego subversion at mplayerhq.hu
Tue Sep 18 11:30:42 CEST 2007


Author: diego
Date: Tue Sep 18 11:30:42 2007
New Revision: 24565

Log:
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.


Modified:
   trunk/libmpcodecs/vf_ass.c

Modified: trunk/libmpcodecs/vf_ass.c
==============================================================================
--- trunk/libmpcodecs/vf_ass.c	(original)
+++ trunk/libmpcodecs/vf_ass.c	Tue Sep 18 11:30:42 2007
@@ -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"



More information about the MPlayer-cvslog mailing list