summaryrefslogtreecommitdiff
path: root/gl/lib/randread.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/lib/randread.c')
-rw-r--r--gl/lib/randread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gl/lib/randread.c b/gl/lib/randread.c
index 65e9d6369..94b9928b2 100644
--- a/gl/lib/randread.c
+++ b/gl/lib/randread.c
@@ -199,7 +199,7 @@ randread_set_handler_arg (struct randread_source *s, void const *handler_arg)
static void
readsource (struct randread_source *s, unsigned char *p, size_t size)
{
- for (;;)
+ while (true)
{
size_t inbytes = fread (p, sizeof *p, size, s->source);
int fread_errno = errno;
@@ -221,7 +221,7 @@ readisaac (struct isaac *isaac, unsigned char *p, size_t size)
{
size_t inbytes = isaac->buffered;
- for (;;)
+ while (true)
{
if (size <= inbytes)
{