[libbluray-devel] Fix printf format

hpi1 git at videolan.org
Mon Jan 25 12:49:57 CET 2016


libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Mon Jan 25 13:42:12 2016 +0200| [31007c4f3634b3d6c3ab24da4fe71bee5572f273] | committer: hpi1

Fix printf format

> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=31007c4f3634b3d6c3ab24da4fe71bee5572f273
---

 src/examples/bdjo_dump.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/examples/bdjo_dump.c b/src/examples/bdjo_dump.c
index bcbd2af..c9c8141 100644
--- a/src/examples/bdjo_dump.c
+++ b/src/examples/bdjo_dump.c
@@ -141,7 +141,7 @@ static void _app_management_table_print(const BDJO_APP_MANAGEMENT_TABLE *p)
     unsigned ii;
 
     for (ii = 0; ii < p->num_app; ii++) {
-        printf("Application %d:\n", ii);
+        printf("Application %u:\n", ii);
         _app_print(&p->app[ii]);
     }
 }



More information about the libbluray-devel mailing list