From: Tom Lane Date: Wed, 17 Dec 2014 18:22:07 +0000 (-0500) Subject: Fix another poorly worded error message. X-Git-Tag: REL9_5_ALPHA1~1041 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c340494235111fb87e46b11ca6a87a7a43795f0f;p=postgresql Fix another poorly worded error message. Spotted by Álvaro Herrera. --- diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 3ca4f054b5..cf15e6f4f8 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2815,7 +2815,8 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo) SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_POWER_USERS, 0, 0, 0, 0, 0, 0, &dropSids[1].Sid)) { - fprintf(stderr, _("%s: could not to allocate SIDs: error code %lu\n"), progname, GetLastError()); + fprintf(stderr, _("%s: could not allocate SIDs: error code %lu\n"), + progname, GetLastError()); return 0; }