consistent brace style

This commit is contained in:
Daniel Micay 2012-06-25 16:08:53 -04:00
parent f89df13e5a
commit 34c041b6f3
1 changed files with 1 additions and 2 deletions

View File

@ -423,8 +423,7 @@ static void load_config(GtkWindow *window, VteTerminal *vte,
palette[i].green += 0x3fff;
palette[i].red += 0x3fff;
}
}
else if (i < 232) {
} else if (i < 232) {
unsigned j = i - 16;
unsigned r = j / 36, g = (j / 6) % 6, b = j % 6;
unsigned red = (r == 0) ? 0 : r * 40 + 55;