[Mplayer-cvslog] CVS: main/libmpcodecs/native fli.c,1.10,1.11 nuppelvideo.c,1.6,1.7 roqav.c,1.6,1.7

Arpi of Ize arpi at mplayerhq.hu
Mon May 20 02:06:32 CEST 2002


Update of /cvsroot/mplayer/main/libmpcodecs/native
In directory mail:/var/tmp.root/cvs-serv14762

Modified Files:
	fli.c nuppelvideo.c roqav.c 
Log Message:
memset and memcpy were used without #include <string.h> in a few places.
patch by Björn Sandell <biorn at dce.chalmers.se>


Index: fli.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/native/fli.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- fli.c	28 Feb 2002 03:01:53 -0000	1.10
+++ fli.c	20 May 2002 00:06:29 -0000	1.11
@@ -14,6 +14,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include "config.h"
 #include "bswap.h"
 #include "mp_msg.h"

Index: nuppelvideo.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/native/nuppelvideo.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nuppelvideo.c	13 Apr 2002 18:05:57 -0000	1.6
+++ nuppelvideo.c	20 May 2002 00:06:29 -0000	1.7
@@ -9,6 +9,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <strings.h>
 
 #include "config.h"
 #include "mp_msg.h"

Index: roqav.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/native/roqav.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- roqav.c	18 Apr 2002 17:08:08 -0000	1.6
+++ roqav.c	20 May 2002 00:06:29 -0000	1.7
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include "config.h"
 #include "bswap.h"
 #include "mp_msg.h"




More information about the MPlayer-cvslog mailing list