[libbluray-devel] Added missing cast

hpi1 git at videolan.org
Fri Aug 2 16:23:50 CEST 2013


libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Fri Aug  2 17:10:57 2013 +0300| [45cfe2fb90222d58e01b3150595cc0b871faf6c9] | committer: hpi1

Added missing cast

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

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

diff --git a/src/file/libaacs.c b/src/file/libaacs.c
index 6e29103..2dc5b3d 100644
--- a/src/file/libaacs.c
+++ b/src/file/libaacs.c
@@ -149,7 +149,7 @@ int libaacs_open(BD_AACS *p, const char *device_path, const char *keyfile_path)
             p->mkbv = aacs_get_mkb_version(p->aacs);
         }
         if (aacs_get_disc_id) {
-            p->disc_id = aacs_get_disc_id(p->aacs);
+            p->disc_id = (const uint8_t *)aacs_get_disc_id(p->aacs);
         }
         return error_code;
     }



More information about the libbluray-devel mailing list