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:
parent
121fa24a34
commit
511b2f300f
Notes:
git
2021-05-03 08:17:47 +09:00
1 changed files with 2 additions and 1 deletions
3
util.c
3
util.c
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue