Mercurial > mplayer.hg
diff stream/freesdp/parser.c @ 21503:f9a95c04844a
remove useless and incorrect const-removing cast
| author | reimar |
|---|---|
| date | Wed, 06 Dec 2006 12:23:32 +0000 |
| parents | 8ed444639678 |
| children | 06fe68e8049a |
line wrap: on
line diff
--- a/stream/freesdp/parser.c Wed Dec 06 12:19:30 2006 +0000 +++ b/stream/freesdp/parser.c Wed Dec 06 12:23:32 2006 +0000 @@ -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))
