summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-10-17 16:17:52 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-10-17 16:17:52 -0400
commite736e1f72c53fbc3af7795a23d1dabc3d5c34ef8 (patch)
treef47cd06ed2ecb39b93da72d40a7acd2c9f51653b /src
parent86a478145287afa6352ede556b49b10daf75480e (diff)
downloadbfs-e736e1f72c53fbc3af7795a23d1dabc3d5c34ef8.tar.xz
color: Add a (void) prototype
Diffstat (limited to 'src')
-rw-r--r--src/color.c2
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;