summaryrefslogtreecommitdiffstats
path: root/src/highlight.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-02-21 14:27:41 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-21 14:27:41 +0000
commita23a11b5bf03454b71fdb5deac0d5f641e222160 (patch)
tree5ce9eb5b9668eb891072ee7e03823b1c68214656 /src/highlight.c
parentd950984489e50b12d87c85f0cce1d672c880aa23 (diff)
patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336
Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
Diffstat (limited to 'src/highlight.c')
-rw-r--r--src/highlight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/highlight.c b/src/highlight.c
index 79501d2b2c..6716da03ef 100644
--- a/src/highlight.c
+++ b/src/highlight.c
@@ -469,7 +469,7 @@ init_highlight(
* the user to override the color values. Only loaded once.
*/
static void
-load_default_colors_lists()
+load_default_colors_lists(void)
{
// Lacking a default color list isn't the end of the world but it is likely
// an inconvenience so users should know when it is missing.