summaryrefslogtreecommitdiff
path: root/src/backend/storage
diff options
context:
space:
mode:
authorPeter Eisentraut2024-07-01 14:40:25 +0000
committerPeter Eisentraut2024-07-01 14:40:25 +0000
commit3fb59e789dd9f21610101d1ec106ad58095e24f3 (patch)
tree2ab44dfe656591c181c38263711062ca2b039a70 /src/backend/storage
parent3497c87b05a6ba31e8d760591900d550b2ef98bc (diff)
Remove useless extern keywords
An extern keyword on a function definition (not declaration) is useless and not the normal style. Discussion: https://www.postgresql.org/message-id/flat/[email protected]
Diffstat (limited to 'src/backend/storage')
-rw-r--r--src/backend/storage/file/fd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index a7c05b0a6fd..3944321ff37 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -4020,7 +4020,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source)
return result;
}
-extern void
+void
assign_debug_io_direct(const char *newval, void *extra)
{
int *flags = (int *) extra;