diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-06 17:43:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-06 17:43:22 +0100 |
commit | fc6f16b57ce988cea6d07b5f2d5054711aad6bbf (patch) | |
tree | 616ce940b1c2072ebb95a8c2fbed129301a29bcb /src/quickfix.c | |
parent | 157d813be41c122e210b0eb1cd1e862fbddbf665 (diff) | |
download | vim-git-fc6f16b57ce988cea6d07b5f2d5054711aad6bbf.tar.gz |
patch 8.0.1583: using C99 commentv8.0.1583
Problem: Using C99 comment.
Solution: Use old style comment. (Kazunobu Kuriyama)
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index 7ee386dbb..e8fe59b33 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -4099,7 +4099,7 @@ ex_cfile(exarg_T *eap) win_T *wp = NULL; qf_info_T *qi = &ql_info; char_u *au_name = NULL; - int save_qfid = 0; // init for gcc + int save_qfid = 0; /* init for gcc */ int res; switch (eap->cmdidx) |