Code

colors: colors_update_pair(), colors_start() and colors_use() return void
authorMax Kellermann <max.kellermann@gmail.com>
Tue, 21 Mar 2017 20:42:52 +0000 (21:42 +0100)
committerMax Kellermann <max.kellermann@gmail.com>
Tue, 21 Mar 2017 20:42:52 +0000 (21:42 +0100)
src/colors.c
src/colors.h

index 2c1a2d04922571224e11bf3d7cff1f762b16b365..1cf4c973cfc63c933b221b4384041764eb51beac 100644 (file)
@@ -80,7 +80,7 @@ colors_lookup_by_name(const char *name)
        return NULL;
 }
 
-static int
+static void
 colors_update_pair(enum color id)
 {
        assert(id > 0 && id < COLOR_END);
@@ -93,7 +93,6 @@ colors_update_pair(enum color id)
        init_pair(id,
                (fg < 0 ? -1 : fg),
                (bg < 0 ? -1 : bg));
-       return 0;
 }
 
 int
@@ -205,8 +204,7 @@ colors_assign(const char *name, const char *value)
        return 0;
 }
 
-
-int
+void
 colors_start(void)
 {
        if (has_colors()) {
@@ -252,12 +250,10 @@ colors_start(void)
                g_list_free(color_definition_list);
                color_definition_list = NULL;
        }
-
-       return 0;
 }
 #endif
 
-int
+void
 colors_use(WINDOW *w, enum color id)
 {
        color_entry_t *entry = &colors[id];
@@ -281,6 +277,4 @@ colors_use(WINDOW *w, enum color id)
 #ifdef ENABLE_COLORS
        }
 #endif
-
-       return 0;
 }
index 1ccf50d2f9ca1b210256aa0fa8a868b691d380e6..c166c363be4378e7c774eff76cc099a1b50a78a0 100644 (file)
@@ -49,9 +49,12 @@ int colors_str2color(const char *str);
 #ifdef ENABLE_COLORS
 int colors_assign(const char *name, const char *value);
 int colors_define(const char *name, short r, short g, short b);
-int colors_start(void);
+
+void
+colors_start(void);
 #endif
 
-int colors_use(WINDOW *w, enum color id);
+void
+colors_use(WINDOW *w, enum color id);
 
 #endif /* COLORS_H */