diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-06 12:23:32 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-06 12:23:32 +0000 |
commit | a900d6f59a814bf147713c2ea45fad6f9273aa09 (patch) | |
tree | c8454899192997254954919cf7c92b2a9814e9d5 /stream/freesdp/parser.c | |
parent | fe8c94ca550cacd794278064024f4dd28c80d83f (diff) | |
download | mpv-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/freesdp/parser.c')
-rw-r--r-- | stream/freesdp/parser.c | 2 |
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)) |