Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
javierhonduco committed Jun 11, 2024
1 parent c477bf2 commit 27ef16c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
zlib.dev
glibc
glibc.static
protobuf
];
nativeBuildInputs = with pkgs; [
pkg-config
Expand Down Expand Up @@ -80,7 +81,6 @@
# snapshot testing plugin binary
cargo-insta
# ocamlPackages.magic-trace
protobuf
];

LIBCLANG_PATH = lib.makeLibraryPath [ llvmPackages_16.libclang ];
Expand Down
2 changes: 1 addition & 1 deletion src/proto/profile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}

0 comments on commit 27ef16c

Please sign in to comment.