remove debug messages

This commit is contained in:
Manuel Domke
2018-08-11 23:29:34 +02:00
parent 8a930f2783
commit 9f241bcd27
2 changed files with 6 additions and 5 deletions

View File

@@ -86,11 +86,11 @@ bool outputBytes(uint8_t *bytes, uint32_t length, uint32_t entropy, bool writeDe
return false;
#endif
#ifdef LINUX
fputs("room?", stderr);
//fputs("room?", stderr);
inmWaitForPoolToHaveRoom();
fputs("room!", stderr);
printf("length: - %ul\n", length);
printf("entropy: - %ul\n", entropy);
//fputs("room!", stderr);
//printf("length: - %ul\n", length);
//printf("entropy: - %ul\n", entropy);
inmWriteEntropyToPool(bytes, length, entropy);
#endif
}