aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-04-22 20:47:51 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-23 06:56:34 -0300
commit557e41b119f052e9f20286e8eb6432f31ba50c07 (patch)
tree1e818f9225fcbe9d944c7d1cf14c077905308ee4 /src
parent12c8094daeb0c7e055e5ea5382e1ae4b0e87d36f (diff)
downloadrneovim-557e41b119f052e9f20286e8eb6432f31ba50c07.tar.gz
rneovim-557e41b119f052e9f20286e8eb6432f31ba50c07.tar.bz2
rneovim-557e41b119f052e9f20286e8eb6432f31ba50c07.zip
Use portable format specifiers: Clint advice & other.
- Modify Clint advice to reflect preference for fixed sized macros. - Cleanup comment to eliminate referecen to "%ld".
Diffstat (limited to 'src')
-rw-r--r--src/screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c
index 00a749ab61..e40005ebc9 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -2232,7 +2232,7 @@ win_line (
int row; /* row in the window, excl w_winrow */
int screen_row; /* row on the screen, incl w_winrow */
- char_u extra[18]; /* "%ld" and 'fdc' must fit in here */
+ char_u extra[18]; /* line number and 'fdc' must fit in here */
int n_extra = 0; /* number of extra chars */
char_u *p_extra = NULL; /* string of extra chars, plus NUL */
int c_extra = NUL; /* extra chars, all the same */