Dropped compiler warning
Probably only raised compiling on 32 bits platforms.
This commit is contained in:
parent
f996fd8fb3
commit
9e4dd00415
@ -449,7 +449,7 @@ prompt_for_password(void)
|
|||||||
ereport(FATAL,
|
ereport(FATAL,
|
||||||
(errcode_errno(),
|
(errcode_errno(),
|
||||||
errmsg("could not allocate memory (" UINT64_FORMAT " bytes): ",
|
errmsg("could not allocate memory (" UINT64_FORMAT " bytes): ",
|
||||||
(unsigned long) BUFSIZE)));
|
(uint64) BUFSIZE)));
|
||||||
|
|
||||||
return buf;
|
return buf;
|
||||||
|
|
||||||
@ -1325,7 +1325,7 @@ pgut_malloc(size_t size)
|
|||||||
ereport(FATAL,
|
ereport(FATAL,
|
||||||
(errcode_errno(),
|
(errcode_errno(),
|
||||||
errmsg("could not allocate memory (" UINT64_FORMAT " bytes): ",
|
errmsg("could not allocate memory (" UINT64_FORMAT " bytes): ",
|
||||||
(unsigned long) size)));
|
(uint64) size)));
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1338,7 +1338,7 @@ pgut_realloc(void *p, size_t size)
|
|||||||
ereport(FATAL,
|
ereport(FATAL,
|
||||||
(errcode_errno(),
|
(errcode_errno(),
|
||||||
errmsg("could not re-allocate memory (" UINT64_FORMAT " bytes): ",
|
errmsg("could not re-allocate memory (" UINT64_FORMAT " bytes): ",
|
||||||
(unsigned long) size)));
|
(uint64) size)));
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user