diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2012-09-04 09:39:49 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2012-09-04 09:39:49 -0400 |
commit | 2042185baf91187c8761e99ff7955bd8e52ec028 (patch) | |
tree | 73aadbd4a979cda929a1f16a257cfdb2d212406d | |
parent | 00a8eb61a254f620dbf4ba5de2f33831f159cdeb (diff) | |
download | postgresql-2042185baf91187c8761e99ff7955bd8e52ec028.tar.gz postgresql-2042185baf91187c8761e99ff7955bd8e52ec028.zip |
Fix transcription error.
-rw-r--r-- | contrib/pg_upgrade/check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index 8ebe61400f8..bed10f8fb45 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -452,7 +452,7 @@ create_script_for_cluster_analyze(char **analyze_script_file_name) fprintf(script, "#!/bin/sh\n\n"); #else /* suppress command echoing */ - fprintf(script, "@echo off"); + fprintf(script, "@echo off\n"); #endif fprintf(script, "echo %sThis script will generate minimal optimizer statistics rapidly%s\n", |