Skip to content

Commit

Permalink
MythVideoOutputNull: Use auto
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Oct 10, 2020
1 parent 3829659 commit ff9da5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mythvideooutnull.cpp
Expand Up @@ -53,7 +53,7 @@ void MythVideoOutputNull::GetRenderOptions(RenderOptions& Options)
MythVideoOutputNull* MythVideoOutputNull::Create(QSize VideoDim, QSize VideoDispDim,
float VideoAspect, MythCodecID CodecID)
{
MythVideoOutputNull* result = new MythVideoOutputNull();
auto * result = new MythVideoOutputNull();
if (result->Init(VideoDim, VideoDispDim, VideoAspect, QRect(), CodecID))
return result;
delete result;
Expand Down

0 comments on commit ff9da5a

Please sign in to comment.