From: Tom Lane Date: Wed, 17 Dec 2014 18:22:07 +0000 (-0500) Subject: Fix another poorly worded error message. X-Git-Tag: REL9_4_1~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f63b38fb252c54a2c40910dee47c2dc46cc7097;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 1366174a5e..b6b5cb5af3 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2812,7 +2812,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; }