Silence compiler warning about printf format for HANDLE.
This commit is contained in:
parent
5b76bb180f
commit
89a091edd2
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/port/win32_shmem.c,v 1.14 2010/01/02 16:57:50 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/port/win32_shmem.c,v 1.15 2010/01/04 01:06:21 itagaki Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -350,7 +350,7 @@ pgwin32_ReserveSharedMemoryRegion(HANDLE hChild)
|
|||||||
MEM_RESERVE, PAGE_READWRITE);
|
MEM_RESERVE, PAGE_READWRITE);
|
||||||
if (address == NULL) {
|
if (address == NULL) {
|
||||||
/* Don't use FATAL since we're running in the postmaster */
|
/* Don't use FATAL since we're running in the postmaster */
|
||||||
elog(LOG, "could not reserve shared memory region (addr=%p) for child %lu: %lu",
|
elog(LOG, "could not reserve shared memory region (addr=%p) for child %p: %lu",
|
||||||
UsedShmemSegAddr, hChild, GetLastError());
|
UsedShmemSegAddr, hChild, GetLastError());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user