From fb6193d028477c11a4ca4ab9ce5dbb223da22abb Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 8 Jun 2012 13:26:36 -0400 Subject: [PATCH] wrap really long line --- termite.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/termite.c b/termite.c index 50d6bff..ee95825 100644 --- a/termite.c +++ b/termite.c @@ -353,13 +353,14 @@ static void load_config(GtkWindow *window, VteTerminal *vte, GdkColor foreground, background, cursor, palette[16]; - static const char *color_names[8] = {"black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"}; + static const char *colors[8] = {"black", "red", "green", "yellow", + "blue", "magenta", "cyan", "white"}; bool success = true; for (unsigned i = 0; i < 8; i++) { GError *error = NULL; gsize length; - gchar **pair = g_key_file_get_string_list(config, "colors", color_names[i], &length, &error); + gchar **pair = g_key_file_get_string_list(config, "colors", colors[i], &length, &error); if (error) { success = false; g_error_free(error);