File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ int nwipe_add_lagg_fibonacci_prng_init( NWIPE_PRNG_INIT_SIGNATURE )
269
269
* state = malloc ( sizeof ( add_lagg_fibonacci_state_t ) );
270
270
}
271
271
add_lagg_fibonacci_init (
272
- (add_lagg_fibonacci_state_t * ) * state , (unsigned long * ) ( seed -> s ), seed -> length / sizeof ( unsigned long ) );
272
+ (add_lagg_fibonacci_state_t * ) * state , (long unsigned int * ) ( seed -> s ), seed -> length / sizeof ( long unsigned int ) );
273
273
274
274
return 0 ;
275
275
}
@@ -285,7 +285,7 @@ int nwipe_xoroshiro256_prng_init( NWIPE_PRNG_INIT_SIGNATURE )
285
285
* state = malloc ( sizeof ( xoroshiro256_state_t ) );
286
286
}
287
287
xoroshiro256_init (
288
- (xoroshiro256_state_t * ) * state , (unsigned long * ) ( seed -> s ), seed -> length / sizeof ( unsigned long ) );
288
+ (xoroshiro256_state_t * ) * state , (long unsigned int * ) ( seed -> s ), seed -> length / sizeof ( long unsigned int ) );
289
289
290
290
return 0 ;
291
291
}
You can’t perform that action at this time.
0 commit comments