X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fpda%2Fpda_callbacks.c;h=0fb187ab786bdee95c17808c5fdbbdff6e07dd86;hb=4525d69506db3ae3e50172a1b7ee34a755835cf6;hp=c0c93c28a6cc568fdf3976485cdb17dad53ead71;hpb=2e68572406c4655a868bbe6bfb559a7997f8f436;p=vlc diff --git a/modules/gui/pda/pda_callbacks.c b/modules/gui/pda/pda_callbacks.c index c0c93c28a6..0fb187ab78 100644 --- a/modules/gui/pda/pda_callbacks.c +++ b/modules/gui/pda/pda_callbacks.c @@ -164,7 +164,7 @@ void PlaylistRebuildListStore( intf_thread_t *p_intf, PL_LOCK; for( i_dummy = 0; i_dummy < playlist_CurrentSize(p_playlist) ; i_dummy++ ) { - playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_dummy, pl_Locked ); + playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_dummy ); if( p_item ) { ppsz_text[0] = p_item->p_input->psz_name; @@ -490,7 +490,7 @@ void onFileListRow(GtkTreeView *treeview, GtkTreePath *path, p_model = gtk_tree_view_get_model(treeview); if (!p_model) { - msg_Err(p_intf, "PDA: Filelist model contains a NULL pointer\n" ); + msg_Err(p_intf, "PDA: Filelist model contains a NULL pointer" ); return; } if (!gtk_tree_model_get_iter(p_model, &iter, path)) @@ -785,7 +785,7 @@ void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path, p_model = gtk_tree_view_get_model(treeview); if (!p_model) { - msg_Err(p_intf, "PDA: Playlist model contains a NULL pointer\n" ); + msg_Err(p_intf, "PDA: Playlist model contains a NULL pointer" ); return; } if (!gtk_tree_model_get_iter(p_model, &iter, path))