1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

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-10 10:41:17 +01:00
committed by Carlos R. Mafra
parent 391a8edb9c
commit 0601e0f002

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);