comparison 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
comparison
equal deleted inserted replaced
21502:a58943013e1d 21503:f9a95c04844a
982 unsigned int *bw_modifiers_count) 982 unsigned int *bw_modifiers_count)
983 { 983 {
984 char fsdp_buf[MAXSHORTFIELDLEN]; 984 char fsdp_buf[MAXSHORTFIELDLEN];
985 unsigned long int wuint; 985 unsigned long int wuint;
986 unsigned int i = 0; 986 unsigned int i = 0;
987 char *lp = (char *) *p; 987 const char *lp = *p;
988 988
989 /* count b= lines */ 989 /* count b= lines */
990 while (!strncmp (lp, "b=", 2)) 990 while (!strncmp (lp, "b=", 2))
991 { 991 {
992 NEXT_LINE (lp); 992 NEXT_LINE (lp);