Fix objc_skip_offset() to avoid skipping and extra character

main
rfm 16 years ago
parent 09ed66f819
commit c8412c806d

@ -684,8 +684,8 @@ objc_skip_offset (const char *type)
{
if (*type == '+')
type++;
while (isdigit ((unsigned char) *++type))
;
while (isdigit ((unsigned char) *type))
type++;
return type;
}

Loading…
Cancel
Save