From: Bruce Momjian Date: Tue, 1 Aug 2006 18:01:36 +0000 (+0000) Subject: Remove extra argument to printf(). X-Git-Tag: REL8_2_BETA1~443 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a4eaa944020cbbfaf0f64f886eac36ab052c79b;p=thirdparty%2Fpostgresql.git Remove extra argument to printf(). --- diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 335e4d7de61..edfc88149a9 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.18 2006/08/01 14:56:29 adunstan Exp $ + * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.19 2006/08/01 18:01:36 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -921,7 +921,7 @@ results_differ(const char *testname) if (strcmp(expectname, testname) != 0) { snprintf(expectfile, sizeof(expectfile), "%s/expected/%s.out", - inputdir, testname, i); + inputdir, testname); snprintf(cmd, sizeof(cmd), SYSTEMQUOTE "diff %s \"%s\" \"%s\" > \"%s\"" SYSTEMQUOTE,