summaryrefslogtreecommitdiff
path: root/random
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-11-06 16:26:09 +0000
committerJeff Trawick <trawick@apache.org>2003-11-06 16:26:09 +0000
commita7cd30ff0fff7570b69d4ce240687f545e7ccc3b (patch)
tree45cb448dfe4c130da2641af701c1065633dcf3d1 /random
parentf722861d823062a6f0d420334ada6c0fb71af74f (diff)
downloadapr-a7cd30ff0fff7570b69d4ce240687f545e7ccc3b.tar.gz
fix an odd portability issue:
Bit-field foo must be of type signed int, unsigned int or int. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64737 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'random')
-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;
};