diff options
author | David Schleef <ds@schleef.org> | 2010-06-09 16:14:32 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-06-09 16:19:49 -0700 |
commit | 27c572f26b36105a71bdbddcc07318dd2b158c53 (patch) | |
tree | 97592fede4edfd31c305423715c641ad82d852f5 /orc-test/orcrandom.c | |
parent | 8f2cc55f745d1e9ed6874087c679b03746e3de5b (diff) |
convert from stdint types to orc types
Diffstat (limited to 'orc-test/orcrandom.c')
-rw-r--r-- | orc-test/orcrandom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/orc-test/orcrandom.c b/orc-test/orcrandom.c index a40112c..0f53963 100644 --- a/orc-test/orcrandom.c +++ b/orc-test/orcrandom.c @@ -21,7 +21,7 @@ orc_random_init (OrcRandomContext *context, int seed) void orc_random_bits (OrcRandomContext *context, void *data, int n_bytes) { - uint8_t *d = data; + orc_uint8 *d = data; int i; for(i=0;i<n_bytes;i++){ context->x = 1103515245*context->x + 12345; |