Skip to content

Commit 7c96133

Browse files
authored
Merge pull request #10 from pr0m1th3as/main
Fix column assignment syntax in sqlfind.m
2 parents a5d71fd + cd63a39 commit 7c96133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/@octave_sqlite/sqlfind.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121

122122
cols = {};
123123
for j=1:length(ti)
124-
cols{end+1} = ti(j);
124+
cols(end+1) = ti(j);
125125
endfor
126126
columns{end+1} = cols;
127127
endfor

0 commit comments

Comments
 (0)