Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
edunham committed Nov 2, 2016
1 parent 31e206e commit e64f6fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -11,5 +11,5 @@ name = "freetype"
crate-type = ["rlib"]

[dependencies]
libc = "*"
servo-freetype-sys = "4.0.2"
libc = "0.2"
2 changes: 1 addition & 1 deletion configure
@@ -1,5 +1,5 @@
#!/bin/bash

SRCDIR = "$(cd $(dirname $0) && pwd)"
SRCDIR="$(cd $(dirname $0) && pwd)"
sed "s#%VPATH%#${SRCDIR}#" ${SRCDIR}/Makefile.in > Makefile

6 changes: 3 additions & 3 deletions src/freetype.rs
Expand Up @@ -21,9 +21,9 @@ pub type FT_Memory = *mut struct_FT_MemoryRec_;
pub type FT_Alloc_Func = extern fn(mem: FT_Memory, size: c_long) -> *mut c_void;
pub type FT_Free_Func = extern fn(mem: FT_Memory, block: *mut c_void);
pub type FT_Realloc_Func = extern fn(mem: FT_Memory,
cur_size: c_long,
new_size: c_long,
block: *mut c_void) -> *mut c_void;
cur_size: c_long,
new_size: c_long,
block: *mut c_void) -> *mut c_void;

#[repr(C)]
pub struct struct_FT_MemoryRec_ {
Expand Down

0 comments on commit e64f6fd

Please sign in to comment.