X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-filenamecat.c;h=795b6df46b1b492d1ff69f0b73a522ec3aad1ce6;hb=68dd9ac979d5c3afd72f3d2fb0d6dcda32b3c384;hp=d102ef627fd2402a06f9ba9e22216a1e0fe3635d;hpb=603a440de49893bc6f9298556e30694acd60e793;p=gnulib.git diff --git a/tests/test-filenamecat.c b/tests/test-filenamecat.c index d102ef627..795b6df46 100644 --- a/tests/test-filenamecat.c +++ b/tests/test-filenamecat.c @@ -1,6 +1,6 @@ /* Test of concatenation of two arbitrary file names. - Copyright (C) 1996-2007, 2009 Free Software Foundation, Inc. + Copyright (C) 1996-2007, 2009-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,7 +29,7 @@ #include "progname.h" int -main (int argc, char *argv[]) +main (int argc _GL_UNUSED, char *argv[]) { static char const *const tests[][3] = { @@ -57,10 +57,10 @@ main (int argc, char *argv[]) char const *const *t = tests[i]; char *res = file_name_concat (t[0], t[1], &base_in_result); if (strcmp (res, t[2]) != 0) - { - fprintf (stderr, "test #%u: got %s, expected %s\n", i, res, t[2]); - fail = true; - } + { + fprintf (stderr, "test #%u: got %s, expected %s\n", i, res, t[2]); + fail = true; + } } exit (fail ? EXIT_FAILURE : EXIT_SUCCESS); }