diff options
author | Andres Freund <andres@anarazel.de> | 2022-04-04 12:14:34 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-04-04 13:53:34 -0700 |
commit | edadf8098f4b2ca50bcc449f8857d0cc960b3c90 (patch) | |
tree | 710ed7455f85bf13e140aeff83b987b132014eea /src/backend/utils/activity/pgstat_archiver.c | |
parent | 4e34747c88a03ede6e9d731727815e37273d4bc9 (diff) |
pgstat: consistent function comment formatting.
There was a wild mishmash of function comment formatting in pgstat, making it
hard to know what to use for any new function and hard to extend existing
comments (particularly due to randomly different forms of indentation).
Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Thomas Munro <thomas.munro@gmail.com>
Discussion: https://postgr.es/m/20220329191727.mzzwbl7udhpq7pmf@alap3.anarazel.de
Discussion: https://postgr.es/m/20220308205351.2xcn6k4x5yivcxyd@alap3.anarazel.de
Diffstat (limited to 'src/backend/utils/activity/pgstat_archiver.c')
-rw-r--r-- | src/backend/utils/activity/pgstat_archiver.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/backend/utils/activity/pgstat_archiver.c b/src/backend/utils/activity/pgstat_archiver.c index 36788f7ab44..4a37b8f6e76 100644 --- a/src/backend/utils/activity/pgstat_archiver.c +++ b/src/backend/utils/activity/pgstat_archiver.c @@ -21,12 +21,9 @@ #include "utils/timestamp.h" -/* ---------- - * pgstat_send_archiver() - - * - * Tell the collector about the WAL file that we successfully - * archived or failed to archive. - * ---------- +/* + * Tell the collector about the WAL file that we successfully + * archived or failed to archive. */ void pgstat_send_archiver(const char *xlog, bool failed) |