projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc03307
)
Make pg_regress -V consistent with the corresponding code in other
author
Tom Lane
<tgl@sss.pgh.pa.us>
Wed, 20 Feb 2008 22:44:16 +0000
(22:44 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Wed, 20 Feb 2008 22:44:16 +0000
(22:44 +0000)
programs: use puts with a compile-time-constant string.
src/test/regress/pg_regress.c
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/pg_regress.c
b/src/test/regress/pg_regress.c
index f2c6cb1f16d0571d151eedb3ec7256932f7b5606..ce30041df664c5ec0bb22156fa303205a2e8d737 100644
(file)
--- a/
src/test/regress/pg_regress.c
+++ b/
src/test/regress/pg_regress.c
@@
-1826,7
+1826,7
@@
regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc
help();
exit_nicely(0);
case 'V':
- p
rintf("pg_regress (PostgreSQL %s)\n",
PG_VERSION);
+ p
uts("pg_regress (PostgreSQL) "
PG_VERSION);
exit_nicely(0);
case 1: