From 7ea3d2a7371c120e912c4c86f6ade3e75ebb2175 Mon Sep 17 00:00:00 2001 From: Francisco Javier Honduvilla Coto Date: Tue, 11 Jun 2024 19:47:52 +0100 Subject: [PATCH] wip --- src/proto/profile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/profile.rs b/src/proto/profile.rs index 29267a9..91b7d67 100644 --- a/src/proto/profile.rs +++ b/src/proto/profile.rs @@ -295,6 +295,6 @@ mod tests { pprof_profile.encode(&mut buffer).unwrap(); let mut pprof_file: File = File::create("profile.pb").unwrap(); - pprof_file.write(&buffer).unwrap(); + pprof_file.write_all(&buffer).unwrap(); } }