diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-06-05 17:04:07 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-06-05 17:04:07 -0400 |
commit | 1497369e5df8bb129256f677a85327f80d3767d3 (patch) | |
tree | 02393978958717e8223140f9f7e36bfddfae2e4c | |
parent | ac23b711dd6ccb82fb70ca0f153fe755fd809a46 (diff) | |
download | postgresql-1497369e5df8bb129256f677a85327f80d3767d3.tar.gz postgresql-1497369e5df8bb129256f677a85327f80d3767d3.zip |
Get rid of a //-style comment.
Not sure how "//XXX" got into a committed patch in the first place,
as it's both content-free and against project style. pgindent made a
bit of a hash of it, too.
Going forward, we should have at least one buildfarm member using
"gcc -ansi" to catch such things, at least till such time as we
decide the project target language isn't C90 any more. I've turned
this option on on dromedary.
-rw-r--r-- | src/test/regress/pg_regress.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index cc260169a48..a267894751e 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -1974,8 +1974,7 @@ help(void) printf(_(" (can be used multiple times to concatenate)\n")); printf(_(" --temp-instance=DIR create a temporary instance in DIR\n")); printf(_(" --use-existing use an existing installation\n")); - //XXX - printf(_("\n")); + printf(_("\n")); printf(_("Options for \"temp-instance\" mode:\n")); printf(_(" --no-locale use C locale\n")); printf(_(" --port=PORT start postmaster on PORT\n")); |