From a2c76ffb1c307e0d77a46d8e9e104778d4b8c626 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 25 Feb 2014 13:47:37 +0100 Subject: [PATCH] redis-cli: also remove useless uint8_t. --- src/redis-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index 8d34a5c4..c82720dd 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -1600,7 +1600,7 @@ static void scanMode() { * Should run in less than 100-200 microseconds even using very * slow hardware. Runs in less than 10 microseconds in modern HW. */ unsigned long compute_something_fast(void) { - uint8_t s[256], i, j, t; + unsigned char s[256], i, j, t; int count = 1000, k; unsigned long output = 0;