FOREVER is of very bad taste, use for (;;)
[apps/madmutt.git] / lib.c
diff --git a/lib.c b/lib.c
index 3212015..974f5ba 100644 (file)
--- a/lib.c
+++ b/lib.c
@@ -402,7 +402,7 @@ char *mutt_read_line(char *s, size_t * size, FILE * fp, int *line)
     *size = STRING;
   }
 
-  FOREVER {
+  for (;;) {
     if (fgets (s + offset, *size - offset, fp) == NULL) {
       p_delete(&s);
       return NULL;