diff --git a/encoding.c b/encoding.c index 9d2446d..6e5b6ab 100644 --- a/encoding.c +++ b/encoding.c @@ -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; }