summaryrefslogtreecommitdiff
path: root/src/cmd4.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-04-21 16:12:21 +0200
committerBardur Arantsson <bardur@scientician.net>2012-03-29 20:57:29 +0200
commit30b5c52fc1370065bed0ba0a4b22329556fb0592 (patch)
treedf03f621d7ad9d2f0462a4b70477b73c85cce048 /src/cmd4.c
parentb102a2e0aeb70e93a1122f42e00a7b672f718a07 (diff)
Clear up Clang warnings.
Diffstat (limited to 'src/cmd4.c')
-rw-r--r--src/cmd4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd4.c b/src/cmd4.c
index c022dde3..f6f90247 100644
--- a/src/cmd4.c
+++ b/src/cmd4.c
@@ -919,7 +919,7 @@ static void do_cmd_options_win(void)
cptr s = angband_term_name[j];
/* Use color */
- if ((j == x)) a = TERM_L_BLUE;
+ if (j == x) a = TERM_L_BLUE;
/* Window name, staggered, centered */
Term_putstr(35 + j * 5 - strlen(s) / 2, 2 + j % 2, -1, a, s);
@@ -933,7 +933,7 @@ static void do_cmd_options_win(void)
cptr str = window_flag_desc[i];
/* Use color */
- if ((i == y)) a = TERM_L_BLUE;
+ if (i == y) a = TERM_L_BLUE;
/* Unused option */
if (!str) str = "(Unused option)";