summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-06 12:23:32 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-06 12:23:32 +0000
commita900d6f59a814bf147713c2ea45fad6f9273aa09 (patch)
treec8454899192997254954919cf7c92b2a9814e9d5 /stream
parentfe8c94ca550cacd794278064024f4dd28c80d83f (diff)
downloadmpv-a900d6f59a814bf147713c2ea45fad6f9273aa09.tar.bz2
mpv-a900d6f59a814bf147713c2ea45fad6f9273aa09.tar.xz
remove useless and incorrect const-removing cast
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21519 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/freesdp/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/freesdp/parser.c b/stream/freesdp/parser.c
index 5cc6823a16..476f66caca 100644
--- a/stream/freesdp/parser.c
+++ b/stream/freesdp/parser.c
@@ -984,7 +984,7 @@ fsdp_parse_b (const char **p, fsdp_bw_modifier_t ** bw_modifiers,
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))