Merge branch 'common-fixes' into rayon

pull/4/head
Jim Blandy 5 years ago
commit 7ee49abfd6

@ -121,7 +121,7 @@ use image::ColorType;
/// Write the buffer `pixels`, whose dimensions are given by `bounds`, to the /// Write the buffer `pixels`, whose dimensions are given by `bounds`, to the
/// file named `filename`. /// file named `filename`.
fn write_bitmap(filename: &str, pixels: &[u8], bounds: (usize, usize)) fn write_image(filename: &str, pixels: &[u8], bounds: (usize, usize))
-> Result<()> -> Result<()>
{ {
let output = try!(File::create(filename)); let output = try!(File::create(filename));
@ -192,5 +192,5 @@ fn main() {
}); });
} }
write_bitmap(&args[1], &pixels, bounds).expect("error writing PNG file"); write_image(&args[1], &pixels, bounds).expect("error writing PNG file");
} }

Loading…
Cancel
Save