Remove debug prints

This commit is contained in:
2024-04-23 15:33:52 +02:00
parent 9dc2ae1bf7
commit f3fe8c5441
2 changed files with 2 additions and 3 deletions

View File

@@ -3,8 +3,8 @@ with pkgs;
let let
agent_src = fetchgit { agent_src = fetchgit {
url = "https://gitea.rixxc.de/rixxc/x25519_agent.git"; url = "https://gitea.rixxc.de/rixxc/x25519_agent.git";
rev = "7a4fa2d95a7c403a0fad2ec15c47a803f5b38ab8"; rev = "58a94b3a6c2ec4d6fd8b86c2269d83d63f1f0c35";
hash = "sha256-xVJhvSzWJak2ch6yqiMJuezYjHzqgMoGDpdx4YqXs0k="; hash = "sha256-sTKO/9bkx7A12A90d2NHwjZ1uiG22gTZBNC8lhDiFc0=";
}; };
agent = callPackage "${agent_src}/default.nix" { }; agent = callPackage "${agent_src}/default.nix" { };

View File

@@ -57,7 +57,6 @@ fn main() {
} as *mut u8; } as *mut u8;
assert_ne!(private_mem, MAP_FAILED as *mut u8); assert_ne!(private_mem, MAP_FAILED as *mut u8);
println!("Agent: starting agent...");
unsafe { unsafe {
agent_start(shared_memory, sync_memory, private_mem); agent_start(shared_memory, sync_memory, private_mem);
} }