Skip to content

Commit 93a5e33

Browse files
author
Alex Cole
committed
Fix #671
1 parent 740d7d2 commit 93a5e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

YSI_Coding/y_functional/y_functional_funcs.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ stock Reverse(data[], dataSize = sizeof (data))
11511151
{
11521152
new
11531153
temp = 0;
1154-
for (new i = 0; j = dataSize - 1; i < j; ++i, --j)
1154+
for (new i = 0, j = dataSize - 1; i < j; ++i, --j)
11551155
{
11561156
temp = data[i],
11571157
data[i] = data[j],

0 commit comments

Comments
 (0)