X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-iconvme.c;h=dc08a9b5268cb7cf6257e96b4ad1b152d5223935;hb=25b6b5120113989e0b91de9d0b75d3d625bbc753;hp=38165f7dfc2293a7e0324e3f86cb1dab4e886e37;hpb=d60f3b0c6b0f93a601acd1cfd3923f94ca05abb0;p=gnulib.git diff --git a/tests/test-iconvme.c b/tests/test-iconvme.c index 38165f7df..dc08a9b52 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-2011 Free Software Foundation, Inc. + Copyright (C) 2004-2005, 2009-2012 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); }