X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-iconvme.c;h=4c8a5a1ce80231a40a18172fe5de6828d3bbd975;hb=c9451e3bdc651a742f06b46a450497e59bb5e006;hp=44df3713c8234af63026acc49ae843f7edd679ef;hpb=1602f0afed21be664fcf5c42d59db07cc22c56d6;p=gnulib.git diff --git a/tests/test-iconvme.c b/tests/test-iconvme.c index 44df3713c..4c8a5a1ce 100644 --- a/tests/test-iconvme.c +++ b/tests/test-iconvme.c @@ -1,5 +1,5 @@ /* Recode strings between character sets, using iconv. - Copyright (C) 2004-2005, 2009-2012 Free Software Foundation, Inc. + Copyright (C) 2004-2005, 2009-2013 Free Software Foundation, Inc. Written by Simon Josefsson. This program is free software: you can redistribute it and/or modify @@ -66,9 +66,9 @@ int main (int ac, char *av[]) from[strlen (from) - 1] = '\0'; } - printf (" Input string: `%s'\n" - "From code set: `%s'\n" - " To code set: `%s'\n", + printf (" Input string: '%s'\n" + "From code set: '%s'\n" + " To code set: '%s'\n", in, from, to); out = iconv_string (in, from, to); @@ -77,7 +77,7 @@ int main (int ac, char *av[]) perror ("iconv"); else { - printf ("\nOutput: `%s'\n", out); + printf ("\nOutput: '%s'\n", out); free (out); }