diff options
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 22e72669ee..edf964f5dd 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3319,7 +3319,6 @@ void qf_age(exarg_T *eap) } if (eap->addr_count != 0) { - assert(eap->line2 <= INT_MAX); count = (int)eap->line2; } else { count = 1; @@ -3739,7 +3738,6 @@ void ex_copen(exarg_T *eap) incr_quickfix_busy(); if (eap->addr_count != 0) { - assert(eap->line2 <= INT_MAX); height = (int)eap->line2; } else { height = QF_WINHEIGHT; |