From 0aa00ea102edfe12978e3f1c8eb28e63ea9171b6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 18 Mar 2011 16:06:16 +0100 Subject: arc4random.c: use smallint for rs_initialized Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/stdlib/arc4random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/stdlib') diff --git a/libc/stdlib/arc4random.c b/libc/stdlib/arc4random.c index e074a22b9..7a8359ab0 100644 --- a/libc/stdlib/arc4random.c +++ b/libc/stdlib/arc4random.c @@ -44,7 +44,7 @@ struct arc4_stream { uint8_t s[256]; }; -static int rs_initialized; +static smallint rs_initialized; static struct arc4_stream rs; static __inline__ void -- cgit v1.2.3