diff options
author | Charles Joachim <cacplate@gmail.com> | 2016-05-07 23:55:07 -0400 |
---|---|---|
committer | Charles Joachim <cacplate@gmail.com> | 2016-05-30 12:05:08 -0400 |
commit | c2a18216114bae75b6d6a2c7f1a68db04578abce (patch) | |
tree | 508f17ba674ed9be29975c0b880fbbcbe980cae5 /src/nvim/ops.h | |
parent | 748898b4dd992c5a5d15a0e1f9f047fc42ba4fd3 (diff) | |
download | rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.tar.gz rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.tar.bz2 rneovim-c2a18216114bae75b6d6a2c7f1a68db04578abce.zip |
ops.c: enable -Wconversion warning
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r-- | src/nvim/ops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h index 8c8a586957..44df2e9e0c 100644 --- a/src/nvim/ops.h +++ b/src/nvim/ops.h @@ -79,7 +79,7 @@ enum GRegFlags { /// Definition of one register typedef struct yankreg { char_u **y_array; ///< Pointer to an array of line pointers. - linenr_T y_size; ///< Number of lines in y_array. + size_t y_size; ///< Number of lines in y_array. MotionType y_type; ///< Register type colnr_T y_width; ///< Register width (only valid for y_type == kBlockWise). Timestamp timestamp; ///< Time when register was last modified. |