diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 08:25:08 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 08:25:08 +0000 |
| commit | e02ba05034de2d4bfb68419b0e4819441f9166e7 (patch) | |
| tree | e3b5dba6617d256c6461cd7a27546913169fed0c /tests | |
| parent | b4789129102adc8f0fbfe9c22230c196ecd39c03 (diff) | |
[trunk] Fix warnings about shadow variables
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/compare_images.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/compare_images.c b/tests/compare_images.c index fba89710..5dfd69d1 100644 --- a/tests/compare_images.c +++ b/tests/compare_images.c @@ -729,14 +729,14 @@ int main(int argc, char **argv) if ( (inParam.tabMSEvalues != NULL) && (inParam.tabPEAKvalues != NULL)) { - int it_comp; + int it_comp2; printf(" MSE values = ["); - for (it_comp = 0; it_comp < inParam.nbcomp; it_comp++) - printf(" %f ", inParam.tabMSEvalues[it_comp]); + for (it_comp2 = 0; it_comp2 < inParam.nbcomp; it_comp2++) + printf(" %f ", inParam.tabMSEvalues[it_comp2]); printf("]\n"); printf(" PEAK values = ["); - for (it_comp = 0; it_comp < inParam.nbcomp; it_comp++) - printf(" %f ", inParam.tabPEAKvalues[it_comp]); + for (it_comp2 = 0; it_comp2 < inParam.nbcomp; it_comp2++) + printf(" %f ", inParam.tabPEAKvalues[it_comp2]); printf("]\n"); printf(" Non-regression test = %d\n", inParam.nr_flag); } |
