1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Fix a bunch of 'old-style parameter declaration' warnings induced by

writing 'foo()' rather than 'foo(void)'.
This commit is contained in:
Tom Lane
2004-10-25 02:15:02 +00:00
parent 8ec05b28b7
commit f1283ed6cc
7 changed files with 27 additions and 23 deletions

View File

@ -32,7 +32,7 @@
int
backend_pid()
backend_pid(void)
{
return getpid();
}