diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-25 02:15:02 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-10-25 02:15:02 +0000 |
commit | f1283ed6cc4db5df781452b5f048dc930cc6a172 (patch) | |
tree | 368520795e0ae52c167be253ab0e74fb0fc2d6ab /contrib/pgcrypto/crypt-des.c | |
parent | 8ec05b28b712fa4b2de5cc088ee978e05cd7e69a (diff) | |
download | postgresql-f1283ed6cc4db5df781452b5f048dc930cc6a172.tar.gz |
Fix a bunch of 'old-style parameter declaration' warnings induced by
writing 'foo()' rather than 'foo(void)'.
Diffstat (limited to 'contrib/pgcrypto/crypt-des.c')
-rw-r--r-- | contrib/pgcrypto/crypt-des.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c index 8be5640b47..0edff299a0 100644 --- a/contrib/pgcrypto/crypt-des.c +++ b/contrib/pgcrypto/crypt-des.c @@ -216,7 +216,7 @@ ascii_to_bin(char ch) } static void -des_init() +des_init(void) { int i, j, |