summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/screensave/screensave.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/screensave/screensave.c b/usr.bin/screensave/screensave.c
index 172ab8b..9dae5d3 100644
--- a/usr.bin/screensave/screensave.c
+++ b/usr.bin/screensave/screensave.c
@@ -76,7 +76,7 @@ screensave(void)
curpix = ctx.io[i];
nextpix = ctx.io[i + 1];
- /* If a multiple of 15, AND, otherwise XOR */
+ /* If a multiple of 16, AND, otherwise XOR */
if ((n_iter & 15) != 0) {
curpix ^= randbuf[0] & 3;
nextpix ^= (curpix | (nextpix << 1));