diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-05-15 16:49:58 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 10:42:06 -0400 |
commit | 2a154ef71de506e64fbbc2d8e613b5a696f8cb60 (patch) | |
tree | 647f302c1d1ae4366c1214887b8d4beb202f4c7f /src/nvim/cursor.h | |
parent | e62722922b671d6f529570af8c96c463878dd46d (diff) | |
download | rneovim-2a154ef71de506e64fbbc2d8e613b5a696f8cb60.tar.gz rneovim-2a154ef71de506e64fbbc2d8e613b5a696f8cb60.tar.bz2 rneovim-2a154ef71de506e64fbbc2d8e613b5a696f8cb60.zip |
Enable -Wconversion on cursor.c
Diffstat (limited to 'src/nvim/cursor.h')
-rw-r--r-- | src/nvim/cursor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cursor.h b/src/nvim/cursor.h index bbd20683bf..5cf28ce590 100644 --- a/src/nvim/cursor.h +++ b/src/nvim/cursor.h @@ -19,7 +19,7 @@ void check_cursor(void); void adjust_cursor_col(void); int leftcol_changed(void); int gchar_cursor(void); -void pchar_cursor(int c); +void pchar_cursor(char_u c); char_u *ml_get_curline(void); char_u *ml_get_cursor(void); |