Removed unnecessary const poisoning (redundant casting) which was added

in rev.1.4.
This commit is contained in:
Bruce Evans 1999-12-24 15:16:10 +00:00
parent cbdf33fa5d
commit 64c6ef6e8f

View File

@ -441,11 +441,11 @@ mn_parse_ts(const char *s)
j = 0;
r |= 1 << i;
if (*p == ',') {
s = (const char *)p + 1;
s = p + 1;
continue;
} else if (*p == '-') {
j = i;
s = (const char *)p + 1;
s = p + 1;
continue;
} else if (!*p) {
break;