Skip to content
Snippets Groups Projects
Commit da322f81 authored by Jacob Smith's avatar Jacob Smith Committed by Sébastien Villemot
Browse files

Moved the TeX file closing statement outside of loop, to fix a problem with...

Moved the TeX file closing statement outside of loop, to fix a problem with non existant file id in producing TeX output in stoch_simul
(cherry picked from commit dc275f4a)
parent 4da9b0c2
No related branches found
Tags
No related merge requests found
......@@ -313,11 +313,11 @@ if options_.irf
end
end
iter_ = olditer;
if TeX
fprintf(fidTeX,' \n');
fprintf(fidTeX,'%% End Of TeX file. \n');
fclose(fidTeX);
end
end
if TeX
fprintf(fidTeX,' \n');
fprintf(fidTeX,'%% End Of TeX file. \n');
fclose(fidTeX);
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment