Skip to content

Commit

Permalink
tidy: Fix "readability-redundant-smartptr-get" warning in videolist.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Nov 3, 2021
1 parent 2a97d4c commit 5f45cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/videolist.cpp
Expand Up @@ -1074,7 +1074,7 @@ static void copy_filtered_tree(meta_dir_node &dst, meta_dir_node &src,
node->GetHost(),
node->GetPrefix(),
node->GetData());
copy_filtered_tree(*sdn, *(dir->get()), filter);
copy_filtered_tree(*sdn, **dir, filter);
}
}

Expand Down

0 comments on commit 5f45cf8

Please sign in to comment.