summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--random/unix/apr_random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/random/unix/apr_random.c b/random/unix/apr_random.c
index 68e9739cc..64cd455e9 100644
--- a/random/unix/apr_random.c
+++ b/random/unix/apr_random.c
@@ -110,8 +110,8 @@ struct apr_random_t {
unsigned int g_for_insecure;
unsigned int g_for_secure;
unsigned int secure_base;
- unsigned char insecure_started:1;
- unsigned char secure_started:1;
+ unsigned int insecure_started:1;
+ unsigned int secure_started:1;
apr_random_t *next;
};