diff options
Diffstat (limited to 'src/nvim/option.c')
| -rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 05dcf737b2..06b7c75245 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -105,7 +105,7 @@ // WV_ and BV_ values get typecasted to this for the "indir" field typedef enum { PV_NONE = 0, - PV_MAXVAL = 0xffff // to avoid warnings for value out of range + PV_MAXVAL = 0xffff, // to avoid warnings for value out of range } idopt_T; /* |