diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2025-09-11 11:55:29 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2025-09-11 12:03:15 +0200 |
commit | 368c38dd47c209fa95d2df855d62bcde386f3037 (patch) | |
tree | 14b4e5bb7709f3ab79a3a8c7cbe3f7c976b69c90 /src/backend/replication | |
parent | 01d793698f5921547a7b5e1e003722c17f552574 (diff) |
Remove stray semicolon at global scope
The Sun Studio compiler complains about an empty declaration here.
Note for future historians: This does not mean that this compiler is
still of current interest for anyone using PostgreSQL. But we can let
this small fix be its parting gift.
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/a0f817ee-fb86-483a-8a14-b6f7f5991b6e%40eisentraut.org
Diffstat (limited to 'src/backend/replication')
-rw-r--r-- | src/backend/replication/logical/slotsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/slotsync.c b/src/backend/replication/logical/slotsync.c index 9d0072a49ed..8c061d55bdb 100644 --- a/src/backend/replication/logical/slotsync.c +++ b/src/backend/replication/logical/slotsync.c @@ -1337,7 +1337,7 @@ reset_syncing_flag() SpinLockRelease(&SlotSyncCtx->mutex); syncing_slots = false; -}; +} /* * The main loop of our worker process. |