From 1334475965f9e496e2435b9de5901fbfc5fb2a44 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Wed, 21 Nov 2012 13:49:39 +0000
Subject: [PATCH] Corrected printf format typo in examples/test.c (l.655) that
 prevented the code from compiling.

Former-commit-id: 93ecbbfb094246c2c2c64597b7c85b588d9b0b27
---
 examples/test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/test.c b/examples/test.c
index 20a0af6bc1..9c6868ee13 100644
--- a/examples/test.c
+++ b/examples/test.c
@@ -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 );
-- 
GitLab