Commit d579d01b authored by Rocky Bernstein's avatar Rocky Bernstein

Remove gcc 4 uninitialize variable warning.

parent 61a89bc8
...@@ -755,7 +755,7 @@ vcdplayer_play_next( access_t * p_access ) ...@@ -755,7 +755,7 @@ vcdplayer_play_next( access_t * p_access )
p_vcdinfo = p_vcdplayer->vcd; p_vcdinfo = p_vcdplayer->vcd;
itemid.type = p_vcdplayer->play_item.type; itemid = p_vcdplayer->play_item;
if (vcdplayer_pbc_is_on(p_vcdplayer)) { if (vcdplayer_pbc_is_on(p_vcdplayer)) {
...@@ -849,7 +849,7 @@ vcdplayer_play_prev( access_t * p_access ) ...@@ -849,7 +849,7 @@ vcdplayer_play_prev( access_t * p_access )
dbg_print( (INPUT_DBG_CALL|INPUT_DBG_PBC), dbg_print( (INPUT_DBG_CALL|INPUT_DBG_PBC),
"current: %d" , p_vcdplayer->play_item.num); "current: %d" , p_vcdplayer->play_item.num);
itemid.type = p_vcdplayer->play_item.type; itemid = p_vcdplayer->play_item;
if (vcdplayer_pbc_is_on(p_vcdplayer)) { if (vcdplayer_pbc_is_on(p_vcdplayer)) {
...@@ -915,7 +915,7 @@ vcdplayer_play_return( access_t * p_access ) ...@@ -915,7 +915,7 @@ vcdplayer_play_return( access_t * p_access )
dbg_print( (INPUT_DBG_CALL|INPUT_DBG_PBC), dbg_print( (INPUT_DBG_CALL|INPUT_DBG_PBC),
"current: %d" , p_vcdplayer->play_item.num); "current: %d" , p_vcdplayer->play_item.num);
itemid.type = p_vcdplayer->play_item.type; itemid = p_vcdplayer->play_item;
if (vcdplayer_pbc_is_on(p_vcdplayer)) { if (vcdplayer_pbc_is_on(p_vcdplayer)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment