summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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(".");