Fixed build warnings (#6664)

* Fixed build warnings

* Suppress warning

* Suppress warning for sure
This commit is contained in:
Arkadiy Paronyan 2017-10-11 09:55:10 +02:00 committed by GitHub
parent 0711ac35ee
commit 045c8409de
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,6 @@
extern crate gcc;
fn main() {
gcc::compile_library("libtinykeccak.a", &["src/tinykeccak.c"]);
gcc::Build::new().file("src/tinykeccak.c").compile("libtinykeccak.a");
}