Skip to content
Snippets Groups Projects
Commit 799339a6 authored by Anian Bühler's avatar Anian Bühler
Browse files

minor changes

parent cec04c36
No related branches found
No related tags found
1 merge request!1dev_prefereences to master
......@@ -1355,7 +1355,7 @@ public class OpenblocksFrame extends JFrame
if(inputCSource != null) {
int read;
byte[] bytes = new byte[1024];
librarySourceFile = new File(libraryPath+File.pathSeparator+libraryName+".c");
librarySourceFile = new File(libraryPath+File.separatorChar+libraryName+".c");
OutputStream outSource = new FileOutputStream(librarySourceFile);
while ((read = inputSource.read(bytes)) != -1) {
outSource.write(bytes, 0, read);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment