Update HeapBlockDevice example in header file to compile

pull/5292/head
Kevin Gilbert 2017-10-10 16:16:48 -05:00
parent df88a9dcc2
commit 37b3b40e2a
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@
* *
* int main() { * int main() {
* bd.init(); * bd.init();
* bd.program(block, 0); * bd.program(block, 0, bd.get_program_size());
* bd.read(block, 0); * bd.read(block, 0, bd.get_read_size());
* printf("%s", block); * printf("%s", block);
* bd.deinit(); * bd.deinit();
* } * }