e: use "while" and not an ugly "for"

SVN revision: 57160
This commit is contained in:
Boris Faure 2011-02-19 12:50:02 +00:00
parent 048a1e6cf7
commit 9dcd184e39
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ e_alert_show(const char *text)
XSync(dd, False);
button = 0;
for (; button == 0;)
while (button == 0)
{
XNextEvent(dd, &ev);
switch (ev.type)