Skip to content

Commit 18b5740

Browse files
committed
add new fields to hoedown structs
1 parent d65092a commit 18b5740

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustdoc/html/markdown.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct hoedown_renderer {
7777
*mut libc::c_void)>,
7878
header: Option<extern "C" fn(*mut hoedown_buffer, *const hoedown_buffer,
7979
libc::c_int, *mut libc::c_void)>,
80-
other: [libc::size_t, ..28],
80+
other: [libc::size_t, ..29],
8181
}
8282

8383
#[repr(C)]
@@ -110,6 +110,7 @@ struct hoedown_buffer {
110110
size: libc::size_t,
111111
asize: libc::size_t,
112112
unit: libc::size_t,
113+
other: [libc::size_t, ..3],
113114
}
114115

115116
// hoedown FFI

0 commit comments

Comments
 (0)