1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Get rid of misleading indentation

This commit is contained in:
xtkoba 2021-05-01 22:26:55 +09:00 committed by Samuel Williams
parent 121fa24a34
commit 511b2f300f
Notes: git 2021-05-03 08:17:47 +09:00

3
util.c
View file

@ -400,7 +400,8 @@ ruby_qsort(void* base, const size_t nel, const size_t size, cmpfunc_t *cmp, void
for (;;) {
start:
if (L + size == R) { /* 2 elements */
if ((*cmp)(L,R,d) > 0) mmswap(L,R); goto nxt;
if ((*cmp)(L,R,d) > 0) mmswap(L,R);
goto nxt;
}
l = L; r = R;