Skip to content

Commit 66be46d

Browse files
committed
[ci] workaround due to octave 9.x windows fscanf bug
reported here https://savannah.gnu.org/bugs/?66161
1 parent 902b0a9 commit 66be46d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readoff.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
node = [];
2121
elem = [];
22-
fid = fopen(fname, 'rt');
22+
fid = fopen(fname, 'rb');
2323
line = fgetl(fid);
2424
dim = sscanf(line, 'OFF %d %d %d');
2525
line = nonemptyline(fid);

0 commit comments

Comments
 (0)