From cf3cb171c65d0e0158e7d650f2941c2fecfa5af5 Mon Sep 17 00:00:00 2001 From: p6nj Date: Mon, 24 Jun 2024 09:51:09 +0200 Subject: [PATCH] rename sample file --- bent-funny-zone/src/main.rs | 2 +- bmp/{sample_640×426.bmp => sample.bmp} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename bmp/{sample_640×426.bmp => sample.bmp} (100%) diff --git a/bent-funny-zone/src/main.rs b/bent-funny-zone/src/main.rs index f9f956a..c6b16b7 100644 --- a/bent-funny-zone/src/main.rs +++ b/bent-funny-zone/src/main.rs @@ -4,7 +4,7 @@ use anyhow::Result; use bmp::open; fn main() -> Result<()> { - let bmp = open("bmp/sample_640×426.bmp")?; + let bmp = open("bmp/sample.bmp")?; bmp.to_writer(&mut File::create("bmp/out.bmp")?)?; Ok(()) } diff --git a/bmp/sample_640×426.bmp b/bmp/sample.bmp similarity index 100% rename from bmp/sample_640×426.bmp rename to bmp/sample.bmp