Style consistency.

Approved style is not to write a single-operation for loop in a single line.
This commit is contained in:
Iain Patterson
2012-04-11 23:55:47 +01:00
committed by Carlos R. Mafra
parent 391a8edb9c
commit 0601e0f002
+2 -1
View File
@@ -435,7 +435,8 @@ Bool RelaunchWindow(WWindow *wwin)
}
int i;
for (i = 0; i < argc; i++) a[i] = argv[i];
for (i = 0; i < argc; i++)
a[i] = argv[i];
a[i] = NULL;
execvp(a[0], a);