diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2017-01-09 20:49:47 +0100 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-02-04 17:55:46 -0500 |
commit | b0cf071d437699b9b89e3735b3df41914f302eb1 (patch) | |
tree | ec6f0ce799cc1ab9b0c195896f67b3d8f82ece7b /src/nvim/quickfix.c | |
parent | d3f97232e8aa94ccb463aadd0c698fd506dfe9ca (diff) | |
download | rneovim-b0cf071d437699b9b89e3735b3df41914f302eb1.tar.gz rneovim-b0cf071d437699b9b89e3735b3df41914f302eb1.tar.bz2 rneovim-b0cf071d437699b9b89e3735b3df41914f302eb1.zip |
Fix clint issues
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 259b1b864c..c40403e3f6 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3736,7 +3736,7 @@ load_dummy_buffer ( buf_T *newbuf; bufref_T newbufref; bufref_T newbuf_to_wipe; - int failed = TRUE; + int failed = true; aco_save_T aco; // Allocate a buffer without putting it in the buffer list. |