1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

comment cleanup

This commit is contained in:
Bruce Momjian
2000-05-23 22:16:27 +00:00
parent 75478861a4
commit d264fb4157

View File

@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.140 2000/04/27 02:59:17 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.141 2000/05/23 22:16:27 momjian Exp $
* *
* NOTES * NOTES
* *
@ -381,7 +381,7 @@ PostmasterMain(int argc, char *argv[])
*original_extraoptions = '\0'; *original_extraoptions = '\0';
/* /*
* We need three params so we can display status. If we don't get * We need four params so we can display status. If we don't get
* them from the user, let's make them ourselves. * them from the user, let's make them ourselves.
*/ */
if (argc < 5) if (argc < 5)
@ -405,7 +405,7 @@ PostmasterMain(int argc, char *argv[])
execv(new_argv[0], new_argv); execv(new_argv[0], new_argv);
/* How did we get here, error! */ /* How did we get here? Error! */
perror(new_argv[0]); perror(new_argv[0]);
fprintf(stderr, "PostmasterMain execv failed on %s\n", argv[0]); fprintf(stderr, "PostmasterMain execv failed on %s\n", argv[0]);
exit(1); exit(1);