diff options
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index f14861f5d9..75c80ed2b0 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -312,7 +312,7 @@ qf_init_ext ( /* * Get some space to modify the format string into. */ - i = (FMT_PATTERNS * 3) + ((int)STRLEN(efm) << 2); + i = 3 * FMT_PATTERNS + 4 * (int)STRLEN(efm); for (round = FMT_PATTERNS; round > 0; ) i += (int)STRLEN(fmt_pat[--round].pattern); #ifdef COLON_IN_FILENAME |