summaryrefslogtreecommitdiff
path: root/src/expand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expand.c')
-rw-r--r--src/expand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expand.c b/src/expand.c
index fa1fdfeb7..6a04d36d7 100644
--- a/src/expand.c
+++ b/src/expand.c
@@ -270,7 +270,7 @@ expand (void)
if (!fp)
return;
- for (;;)
+ while (true)
{
/* Input character, or EOF. */
int c;
@@ -306,7 +306,7 @@ expand (void)
if (tab_size)
next_tab_column = column + (tab_size - column % tab_size);
else
- for (;;)
+ while (true)
if (tab_index == first_free_tab)
{
next_tab_column = column + 1;