Merge pull request #55 from bjfish/cleanup-build-warnings

Cleanup build warnings
This commit is contained in:
Syrus Akbary 2018-12-13 18:44:31 -08:00 committed by GitHub
commit 6839115a27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 7 deletions

View File

@ -15,7 +15,7 @@ include = [
"Cargo.toml",
"LICENSE",
"Makefile",
"README.md",
"/README.md",
"rustfmt.toml"
]

View File

@ -1,4 +1,4 @@
use crate::webassembly::LinearMemory;
// use crate::webassembly::LinearMemory;
pub fn align_memory(ptr: u32) -> u32 {
(ptr + 15) & !15

View File

@ -1,7 +1,6 @@
use super::utils::{copy_cstr_into_wasm, write_to_buf};
use libc::{
c_int,
c_long,
clock_gettime as libc_clock_gettime,
localtime,
localtime_r,

View File

@ -20,10 +20,8 @@ pub fn is_emscripten_module(module: &Module) -> bool {
pub unsafe fn write_to_buf(string: *const c_char, buf: u32, max: u32, instance: &Instance) -> u32 {
let buf_addr = instance.memory_offset_addr(0, buf as _) as *mut c_char;
unsafe {
for i in 0..max {
*buf_addr.add(i as _) = *string.add(i as _);
}
for i in 0..max {
*buf_addr.add(i as _) = *string.add(i as _);
}
buf