Skip to content
Snippets Groups Projects
Commit 139a3ff5 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp_channeldemux: whitespace

parent fe02bb51
No related branches found
No related tags found
No related merge requests found
......@@ -865,13 +865,10 @@ static GstFlowReturn chain(GstPad *pad, GstObject *parent, GstBuffer *inbuf)
verifier.CheckFileChecksumOnly(true);
#if VERIFY_THROWS_EXCEPTION
try
{
verifier(ifs);
}
catch( const FrameCPP::Common::VerifyException& E )
{
throw std::runtime_error( E.what( ) );
try {
verifier(ifs);
} catch(const FrameCPP::Common::VerifyException& E) {
throw std::runtime_error(E.what());
}
#else
if(verifier(ifs) != 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment