Skip to content

Commit 6fba7ff

Browse files
committed
Add space
1 parent 5733f5d commit 6fba7ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/common/blib_func.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2810,16 +2810,16 @@ void cmd_genfunc(long funcCode, var_t *r) {
28102810

28112811
var_num_t *m = (var_num_t *)malloc(((rows) * (cols)) * sizeof(var_num_t));
28122812

2813-
for(int32_t x = 0; x < cols; x++) {
2814-
for(int32_t y = 0; y < rows; y++) {
2813+
for (int32_t x = 0; x < cols; x++) {
2814+
for (int32_t y = 0; y < rows; y++) {
28152815
pos1 = y * cols + x;
28162816
pos2 = x * rows + y;
28172817
e = v_elem(a, pos1);
28182818
m[pos2] = v_getval(e);
28192819
}
28202820
}
28212821

2822-
if(cols > 1) {
2822+
if (cols > 1) {
28232823
mat_tov(r, m, cols, rows, 1);
28242824
} else {
28252825
mat_tov(r, m, rows, 1, 0);

0 commit comments

Comments
 (0)