CLEANUP: Replace for loop with only a condition by while

Refactoring performed with the following Coccinelle patch:

    @@
    expression e;
    statement S;
    @@

    - for (;e;)
    + while (e)
      S
1 file changed