diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-10-17 16:17:52 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-10-17 16:17:52 -0400 |
commit | e736e1f72c53fbc3af7795a23d1dabc3d5c34ef8 (patch) | |
tree | f47cd06ed2ecb39b93da72d40a7acd2c9f51653b /src | |
parent | 86a478145287afa6352ede556b49b10daf75480e (diff) | |
download | bfs-e736e1f72c53fbc3af7795a23d1dabc3d5c34ef8.tar.xz |
color: Add a (void) prototype
Diffstat (limited to 'src')
-rw-r--r-- | src/color.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color.c b/src/color.c index c510fa8..6908628 100644 --- a/src/color.c +++ b/src/color.c @@ -408,7 +408,7 @@ static void parse_gnu_ls_colors(struct colors *colors, const char *ls_colors) { } } -struct colors *parse_colors() { +struct colors *parse_colors(void) { struct colors *colors = malloc(sizeof(struct colors)); if (!colors) { return NULL; |