diff options
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index a7aff15121..08345a323c 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3327,7 +3327,7 @@ load_dummy_buffer ( aco_save_T aco; /* Allocate a buffer without putting it in the buffer list. */ - newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); + newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY, 0); if (newbuf == NULL) return NULL; |