1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-03 05:22:23 +00:00

remove useless and incorrect const-removing cast

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21519 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-12-06 12:23:32 +00:00
parent fe8c94ca55
commit a900d6f59a

View File

@ -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))