diff options
Diffstat (limited to 'src/include/postmaster/pgarch.h')
-rw-r--r-- | src/include/postmaster/pgarch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/postmaster/pgarch.h b/src/include/postmaster/pgarch.h index 38cb1c64774..f366a159a8e 100644 --- a/src/include/postmaster/pgarch.h +++ b/src/include/postmaster/pgarch.h @@ -55,19 +55,19 @@ typedef struct ArchiveModuleCallbacks ArchiveCheckConfiguredCB check_configured_cb; ArchiveFileCB archive_file_cb; ArchiveShutdownCB shutdown_cb; -} ArchiveModuleCallbacks; +} ArchiveModuleCallbacks; /* * Type of the shared library symbol _PG_archive_module_init that is looked * up when loading an archive library. */ -typedef void (*ArchiveModuleInit) (ArchiveModuleCallbacks * cb); +typedef void (*ArchiveModuleInit) (ArchiveModuleCallbacks *cb); /* * Since the logic for archiving via a shell command is in the core server * and does not need to be loaded via a shared library, it has a special * initialization function. */ -extern void shell_archive_init(ArchiveModuleCallbacks * cb); +extern void shell_archive_init(ArchiveModuleCallbacks *cb); #endif /* _PGARCH_H */ |