X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-iconvme.c;h=106380e7640db053508153159a31a9dc1d57e088;hb=cfe23e8;hp=4834a606dffba0d05c94a8116c9a5d1e816cb962;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/tests/test-iconvme.c b/tests/test-iconvme.c index 4834a606d..106380e76 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 Free Software Foundation, Inc. + Copyright (C) 2004-2005, 2009-2014 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); }