Commit b96a3090 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Avoid unnecessary assignment in generated audio type converters.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403417
parent c16d0bb0
This diff is collapsed.
...@@ -252,9 +252,8 @@ EOF ...@@ -252,9 +252,8 @@ EOF
} }
print <<EOF; print <<EOF;
format = AUDIO_$to;
if (cvt->filters[++cvt->filter_index]) { if (cvt->filters[++cvt->filter_index]) {
cvt->filters[cvt->filter_index] (cvt, format); cvt->filters[cvt->filter_index] (cvt, AUDIO_$to);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment