1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #8883 from PeterKietzmann/pr_remove_xorshift_printf

sys/random: remove printf in xorshift
This commit is contained in:
Kaspar Schleiser 2018-04-05 13:25:52 +02:00 committed by GitHub
commit da33bff707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,6 @@
*/
#include <stdint.h>
#include <stdio.h>
#include "random.h"
@ -63,7 +62,6 @@ uint32_t random_uint32(void)
void random_init(uint32_t val)
{
printf("random init %u\n", (unsigned)val);
if (!val) {
val = 1;
}