Skip to content
Snippets Groups Projects
Commit 13344759 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Corrected printf format typo in examples/test.c (l.655) that prevented the code from compiling.

Former-commit-id: 93ecbbfb094246c2c2c64597b7c85b588d9b0b27
parent 2b238a59
Branches
Tags
No related merge requests found
......@@ -652,7 +652,7 @@ int main ( int argc , char *argv[] ) {
}
/* How large are the parts? */
printf( "main: sizeof(struct part) is %i bytes.\n" , sizeof( struct part ) );
printf( "main: sizeof(struct part) is %li bytes.\n" , sizeof( struct part ) );
/* Dump the kernel to make sure its ok. */
// kernel_dump( 100 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment