Skip to content

Commit 3f63b38

Browse files
committed
Fix another poorly worded error message.
Spotted by Álvaro Herrera.
1 parent 022d954 commit 3f63b38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/initdb/initdb.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2812,7 +2812,8 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo)
28122812
SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_POWER_USERS, 0, 0, 0, 0, 0,
28132813
0, &dropSids[1].Sid))
28142814
{
2815-
fprintf(stderr, _("%s: could not to allocate SIDs: error code %lu\n"), progname, GetLastError());
2815+
fprintf(stderr, _("%s: could not allocate SIDs: error code %lu\n"),
2816+
progname, GetLastError());
28162817
return 0;
28172818
}
28182819

0 commit comments

Comments
 (0)