summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2023-07-04 12:15:29 -0400
committerJakob Kaivo <jkk@ung.org>2023-07-04 12:15:29 -0400
commitf644339809dd2a435a9455125fada7a8cbd6518a (patch)
tree3931e9601d60536a0833e92beb072597ecb62ff8
parent60819a90d1771ab147d4641befc956a36b8084b8 (diff)
sleep a shorter periodHEADmaster
-rw-r--r--leet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/leet.c b/leet.c
index b166f80..0af6c9f 100644
--- a/leet.c
+++ b/leet.c
@@ -32,7 +32,7 @@ void hexdump(uintmax_t address, size_t n, unsigned char buf[static n])
for (size_t i = 0; i < n; i++) {
printf("\033[%hhdm%c\033[0m", COLOR(buf[i]), isprint(buf[i]) ? buf[i] : '.');
- usleep(100 * buf[i]);
+ usleep(10 * buf[i]);
}
for (size_t i = n; i < 16; i++) {
printf(".");