diff options
Diffstat (limited to 'src/nvim/marktree.h')
-rw-r--r-- | src/nvim/marktree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/marktree.h b/src/nvim/marktree.h index 046946bc95..29d2abcd46 100644 --- a/src/nvim/marktree.h +++ b/src/nvim/marktree.h @@ -77,7 +77,7 @@ typedef struct { #define MARKTREE_END_FLAG (((uint64_t)1) << 63) static inline uint64_t mt_lookup_id(uint32_t ns, uint32_t id, bool enda) { - return (uint64_t)ns << 32 | id | (enda?MARKTREE_END_FLAG:0); + return (uint64_t)ns << 32 | id | (enda ? MARKTREE_END_FLAG : 0); } #undef MARKTREE_END_FLAG |