Remove excessive trailing semicolons
Richard Guo <guofenglinux@gmail.com>
From: Richard Guo <guofenglinux@gmail.com>
To: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2024-03-29T09:14:30Z
Lists: pgsql-hackers
Attachments
- v1-0001-Remove-excessive-trailing-semicolons.patch (application/octet-stream) patch v1-0001
Noticed some newly introduced excessive trailing semicolons: $ git grep -E ";;$" -- *.c *.h src/include/lib/radixtree.h: int deletepos = slot - n4->children;; src/test/modules/test_tidstore/test_tidstore.c: BlockNumber prevblkno = 0;; Here is a trivial patch to remove them. Thanks Richard
Commits
-
Remove superfluous trailing semicolons
- a96a8b15fa4e 17.0 landed