diff options
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 7ba11ed8e5..cc66f917f8 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -1079,7 +1079,7 @@ static int parse_fmt_types(const char ***ap_types, int *num_posarg, const char * any_arg = 1; CHECK_POS_ARG; } - } else if (ascii_isdigit((int)(*(arg = p)))) { + } else if (ascii_isdigit((int)(*p))) { // size_t could be wider than unsigned int; make sure we treat // argument like common implementations do unsigned uj = (unsigned)(*p++ - '0'); @@ -1126,7 +1126,7 @@ static int parse_fmt_types(const char ***ap_types, int *num_posarg, const char * any_arg = 1; CHECK_POS_ARG; } - } else if (ascii_isdigit((int)(*(arg = p)))) { + } else if (ascii_isdigit((int)(*p))) { // size_t could be wider than unsigned int; make sure we // treat argument like common implementations do unsigned uj = (unsigned)(*p++ - '0'); @@ -1155,7 +1155,7 @@ static int parse_fmt_types(const char ***ap_types, int *num_posarg, const char * p++; if (length_modifier == 'l' && *p == 'l') { // double l = long long - length_modifier = 'L'; + // length_modifier = 'L'; p++; } } |