about summary refs log tree commit diff
path: root/iconvdata
diff options
context:
space:
mode:
Diffstat (limited to 'iconvdata')
-rwxr-xr-xiconvdata/run-iconv-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh
index c8e5e6232c..72b566bdcb 100755
--- a/iconvdata/run-iconv-test.sh
+++ b/iconvdata/run-iconv-test.sh
@@ -68,7 +68,7 @@ while read from to subset targets; do
 	  failed=1; continue; }
     else
       $ICONV -f ASCII -t $to testdata/suntzus |
-      $ICONV -f $to -f ASCII > $temp1 ||
+      $ICONV -f $to -t ASCII > $temp1 ||
         { echo "*** conversion ASCII->$to->ASCII of suntzus failed";
 	  failed=1; continue; }
 	cmp testdata/suntzus $temp1 ||