[MPlayer-cvslog] r21519 - trunk/stream/freesdp/parser.c
reimar
subversion at mplayerhq.hu
Wed Dec 6 13:23:32 CET 2006
Author: reimar
Date: Wed Dec 6 13:23:32 2006
New Revision: 21519
Modified:
trunk/stream/freesdp/parser.c
Log:
remove useless and incorrect const-removing cast
Modified: trunk/stream/freesdp/parser.c
==============================================================================
--- trunk/stream/freesdp/parser.c (original)
+++ trunk/stream/freesdp/parser.c Wed Dec 6 13:23:32 2006
@@ -984,7 +984,7 @@
char fsdp_buf[MAXSHORTFIELDLEN];
unsigned long int wuint;
unsigned int i = 0;
- char *lp = (char *) *p;
+ const char *lp = *p;
/* count b= lines */
while (!strncmp (lp, "b=", 2))
More information about the MPlayer-cvslog
mailing list