aboutsummaryrefslogtreecommitdiff
path: root/colour.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2021-11-01 10:01:13 +0000
committerThomas Adam <thomas@xteddy.org>2021-11-01 10:01:13 +0000
commit774903f6c4b1c1ae44517af43a7d70d80eb7d805 (patch)
treeffb9544d0a82f0612dc178d4e31d887eedf02e67 /colour.c
parentc76904343a3ddfea3c58ec00d9904c16574a8af3 (diff)
parent4fe5aa99fb203ddb25089955d8814e1065e11a60 (diff)
downloadrtmux-774903f6c4b1c1ae44517af43a7d70d80eb7d805.tar.gz
rtmux-774903f6c4b1c1ae44517af43a7d70d80eb7d805.tar.bz2
rtmux-774903f6c4b1c1ae44517af43a7d70d80eb7d805.zip
Merge branch 'obsd-master' into master
Diffstat (limited to 'colour.c')
-rw-r--r--colour.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/colour.c b/colour.c
index 92bbd71e..6ede25da 100644
--- a/colour.c
+++ b/colour.c
@@ -115,7 +115,7 @@ colour_force_rgb(int c)
return (colour_256toRGB(c));
if (c >= 0 && c <= 7)
return (colour_256toRGB(c));
- if (c >= 90 & c <= 97)
+ if (c >= 90 && c <= 97)
return (colour_256toRGB(8 + c - 90));
return (-1);
}