Przeglądaj źródła

Remove debug println

Lucas Stadler 10 lat temu
rodzic
commit
8e800af3c8
1 zmienionych plików z 0 dodań i 1 usunięć
  1. 0 1
      rust/coffi/src/main.rs

+ 0 - 1
rust/coffi/src/main.rs

@ -57,7 +57,6 @@ fn main() {
57 57
    println!("cos(3.1415) = {}", x);
58 58
59 59
    let mut img = png_image::new();
60
    println!("{}", img);
61 60
    let file_name = std::env::args().nth(1).unwrap_or(String::from("mei.png"));
62 61
    let c_name = std::ffi::CString::new(file_name).unwrap();
63 62
    let res = img.begin_read_from_file(c_name.as_ptr());