This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
av_fetch: de-duplicate small bit of code
authorDavid Mitchell <davem@iabyn.com>
Mon, 27 Feb 2012 11:32:36 +0000 (11:32 +0000)
committerDavid Mitchell <davem@iabyn.com>
Mon, 27 Feb 2012 11:32:36 +0000 (11:32 +0000)
commit55d3f3e53492b8cc2dcf2c5ff35f6b379b1685e8
tree460d0755ab7dc3098c56156e675b691f5f82f147
parenta90703188215281875f4dfa669aa77828d6aa7c4
av_fetch: de-duplicate small bit of code

make the code slightly smaller by changing

    if (A)
return X;
    if (B)
return X;

into
    `
    if (A || B)
return X;
av.c