From a0cb24b84e7c4f0a8ac952b4871298562d9f22b3 Mon Sep 17 00:00:00 2001 From: David Brown Date: Tue, 3 Dec 2019 15:06:52 -0700 Subject: [PATCH] sim: Remove some extraneous print These were added during development to make sure conditional compilation was working. Now, they just cause excess messages to be printed. Remove them. Signed-off-by: David Brown --- sim/src/image.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/sim/src/image.rs b/sim/src/image.rs index b6a3c8c9..bc4c4443 100644 --- a/sim/src/image.rs +++ b/sim/src/image.rs @@ -1545,12 +1545,10 @@ pub fn show_sizes() { #[cfg(not(feature = "large-write"))] fn test_alignments() -> &'static [usize] { - println!("Not large write"); &[1, 2, 4, 8] } #[cfg(feature = "large-write")] fn test_alignments() -> &'static [usize] { - println!("Large write test: {:?}", cfg!(feature = "large-write")); &[1, 2, 4, 8, 128, 512] }