summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2008-12-18 12:37:32 -0800
committerKeith Packard <keithp@keithp.com>2008-12-18 12:37:32 -0800
commit0bc52385b8f86f9ca1c450ad106e6d8afe3bc153 (patch)
treed884e0a60ef9f0a8d56d5b5a68dedcf734a07eaa
parent3779cc8b32cac3640f42bd0400d4199ddae965a1 (diff)
faster
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--blink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blink.c b/blink.c
index f8cf7827..1f8a5192 100644
--- a/blink.c
+++ b/blink.c
@@ -30,7 +30,7 @@ delay (int n)
int i, j, k;
for (k = 0; k < n; k++) {
- for (j = 0; j < 100; j++)
+ for (j = 0; j < 50; j++)
for (i = 0; i < 1000; i++)
nop();
}