diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/misc.c b/gcc/fortran/misc.c index 0fc25df..46c6277 100644 --- a/gcc/fortran/misc.c +++ b/gcc/fortran/misc.c @@ -397,7 +397,7 @@ gfc_closest_fuzzy_match (const char *typo, char **candidates) likely to be meaningless. */ if (best) { - unsigned int cutoff = MAX (tl, strlen (best)) / 2; + unsigned int cutoff = MAX (tl, strlen (best)); if (best_distance > cutoff) { |