From 3d03d9969e2844594278574523ddd55808770fd3 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Thu, 11 Jul 2024 21:04:08 +0200 Subject: [PATCH] Use the new scheme format --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c852936c77..1255a473ff 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,7 +29,7 @@ fn main() { let event_queue = EventQueue::::new().expect("pty: failed to open event:"); - let time_path = format!("time:{}", flag::CLOCK_MONOTONIC); + let time_path = format!("/scheme/time/{}", flag::CLOCK_MONOTONIC); let mut time_file = Fd::open(&time_path, flag::O_NONBLOCK, 0).expect("pty: failed to open time:");