]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Remove stray semicolon at global scope
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 11 Sep 2025 09:55:29 +0000 (11:55 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 11 Sep 2025 10:03:30 +0000 (12:03 +0200)
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

src/backend/replication/logical/slotsync.c

index e534ccc449ab87ce18a917c1edf3bc0a9c4cc757..61b2e9396aa697010b191f26cf12b6fc247bfcf3 100644 (file)
@@ -1338,7 +1338,7 @@ reset_syncing_flag()
        SpinLockRelease(&SlotSyncCtx->mutex);
 
        syncing_slots = false;
-};
+}
 
 /*
  * The main loop of our worker process.