Minor changes from review

This commit is contained in:
Gregory Nutt 2016-03-24 11:22:24 -06:00
parent 79c83a0f3f
commit f45d5a7ebf

View File

@ -128,9 +128,11 @@ int rand_main(int argc, char *argv[])
(void)close(fd);
exit(EXIT_FAILURE);
}
if (nread != nsamples * sizeof(uint32_t))
{
fprintf(stderr, "ERROR: Read from /dev/randon only produced %d bytes\n", nread);
fprintf(stderr, "ERROR: Read from /dev/randon only produced %d bytes\n",
(int)nread);
(void)close(fd);
exit(EXIT_FAILURE);
}