Correct small whitespace inconsistency, lost while renaming variables.
1 function arityMismatchMissingArg(arg)
3 for (var a = 0, i = 1; i < 10000; i *= 2) {
9 function arityMismatchExtraArg()
11 return arityMismatchMissingArg(1, 2);
13 assertEq(arityMismatchExtraArg(), 16383);