libbluray | branch: master | Sean McGovern <[email protected]> | Wed Sep 11 23:22:17 2013 -0400| [86227e2860c871e0a2e8d287b75559df8ccc0567] | committer: npzacs
rename a variable as it shadows a global definition > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=86227e2860c871e0a2e8d287b75559df8ccc0567 --- src/libbluray/bluray.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libbluray/bluray.c b/src/libbluray/bluray.c index b6f432d..928ab87 100644 --- a/src/libbluray/bluray.c +++ b/src/libbluray/bluray.c @@ -482,9 +482,9 @@ static void _update_textst_timer(BLURAY *bd) static void _init_textst_timer(BLURAY *bd) { if (bd->st_textst.clip) { - uint32_t time; - clpi_access_point(bd->st0.clip->cl, bd->st0.clip_block_pos/192, /*next=*/0, /*angle_change=*/0, &time); - bd->gc_wakeup_time = time; + uint32_t clip_time; + clpi_access_point(bd->st0.clip->cl, bd->st0.clip_block_pos/192, /*next=*/0, /*angle_change=*/0, &clip_time); + bd->gc_wakeup_time = clip_time; bd->gc_wakeup_pos = 0; _update_textst_timer(bd); } _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
