mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 14:19:26 -04:00
Try to avoid compiler warnings in optimized builds.
Per report from Andres Freund, who also says that this fix works for him. Discussion: http://postgr.es/m/20200405193118.alprgmozhxcfabkw@alap3.anarazel.de
This commit is contained in:
parent
baf17ad9df
commit
05021a2c0c
1 changed files with 2 additions and 1 deletions
|
|
@ -29,7 +29,8 @@ typedef void (*json_manifest_perwalrange_callback)(JsonManifestParseContext *,
|
|||
TimeLineID tli,
|
||||
XLogRecPtr start_lsn, XLogRecPtr end_lsn);
|
||||
typedef void (*json_manifest_error_callback)(JsonManifestParseContext *,
|
||||
char *fmt, ...) pg_attribute_printf(2, 3);
|
||||
char *fmt, ...) pg_attribute_printf(2, 3)
|
||||
pg_attribute_noreturn();
|
||||
|
||||
struct JsonManifestParseContext
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue