diff --git a/encoding.c b/encoding.c index cde5125..70908c4 100644 --- a/encoding.c +++ b/encoding.c @@ -698,8 +698,8 @@ objc_skip_offset (const char *type) { if (*type == '+') type++; - while (isdigit ((unsigned char) *++type)) - ; + while (isdigit ((unsigned char) *type)) + type++; return type; }