comparison src/charset.c @ 32009:4545f58c8490 v9.0.1336

patch 9.0.1336: functions without arguments are not always declared properly Commit: https://github.com/vim/vim/commit/a23a11b5bf03454b71fdb5deac0d5f641e222160 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Feb 21 14:27:41 2023 +0000 patch 9.0.1336: functions without arguments are not always declared properly Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/12031)
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Feb 2023 15:30:08 +0100
parents 27ab829631df
children 39f4126d2a0d
comparison
equal deleted inserted replaced
32008:6b51ad8c5e8e 32009:4545f58c8490
1762 /* 1762 /*
1763 * getwhitecols: return the number of whitespace 1763 * getwhitecols: return the number of whitespace
1764 * columns (bytes) at the start of a given line 1764 * columns (bytes) at the start of a given line
1765 */ 1765 */
1766 int 1766 int
1767 getwhitecols_curline() 1767 getwhitecols_curline(void)
1768 { 1768 {
1769 return getwhitecols(ml_get_curline()); 1769 return getwhitecols(ml_get_curline());
1770 } 1770 }
1771 1771
1772 int 1772 int