Skip to content

Commit 7dbc4c8

Browse files
ruurdademamitaki28
authored andcommitted
Fix 'no newline at end of file' warning/error (#54)
1 parent 7ca820a commit 7dbc4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class ConfigurationTester implements vscode.Disposable {
2121
}
2222
this.processes.delete(proc.pid);
2323
});
24-
proc.stdin.end("int main() { return 0; }");
24+
proc.stdin.end("int main() { return 0; }\n");
2525
this.processes.set(proc.pid, proc);
2626
}
2727
dispose() {

0 commit comments

Comments
 (0)