fix style

This commit is contained in:
Chris Cromer 2018-11-19 22:04:13 -03:00
parent 4821776ffe
commit 1094451880
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void bitonicmerge_no2(int low, int n, int dir, int *array) {
void recbitonic(int low, int n, int dir, int *array) {
int k;
if (n > 1){
if (n > 1) {
k = n / 2;
recbitonic(low, k, 1, array);
recbitonic(low + k, k, 0, array);