X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-filenamecat.c;h=b01645a48b1d8d01f611e8f730af89e216f2215a;hb=444cc405e1ad5afea49c9757be5a2c31c81804b6;hp=44a7bd587cd06b371ee85c7a9096905e9abc1e22;hpb=82381b9e5b37125305709d412d8322b35e5c4796;p=gnulib.git diff --git a/tests/test-filenamecat.c b/tests/test-filenamecat.c index 44a7bd587..b01645a48 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-2010 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 _UNUSED_PARAMETER_, char *argv[]) +main (int argc _GL_UNUSED, char *argv[]) { static char const *const tests[][3] = { @@ -57,10 +57,10 @@ main (int argc _UNUSED_PARAMETER_, 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); }