Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jw-lin committed Oct 17, 2023
1 parent d4c93cb commit 2958209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AOloopControl_IOtools/pl_column_sum.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static errno_t compute_function()
float tot = 0.0;
uint32_t j;
for (j = 0; j < sizeouty; j++) {
uint64_t pixindex = j*sizeoutx + i/;/i * sizeouty + j;
uint64_t pixindex = j*sizeoutx + i;//i * sizeouty + j;
tot += wfsin.im->array.F[pixindex];
}
wfsout.im->array.F[i] = tot;
Expand Down

0 comments on commit 2958209

Please sign in to comment.