summaryrefslogtreecommitdiff
path: root/support/texlab/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/src/main.rs')
-rw-r--r--support/texlab/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/texlab/src/main.rs b/support/texlab/src/main.rs
index c3616a3e96..71338f1bcd 100644
--- a/support/texlab/src/main.rs
+++ b/support/texlab/src/main.rs
@@ -32,7 +32,7 @@ fn main() -> Result<()> {
setup_logger(opts);
let (connection, threads) = Connection::stdio();
- Server::with_connection(connection, env::current_dir()?, true)?.run()?;
+ Server::with_connection(connection, env::current_dir()?, true).run()?;
threads.join()?;
Ok(())