1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +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

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.13 2004/05/07 00:24:57 tgl Exp $
* $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.14 2004/10/25 02:15:02 tgl Exp $
*/
@ -493,25 +493,25 @@ bf_load(int mode)
/* ciphers */
static PX_Cipher *
rj_128_ecb()
rj_128_ecb(void)
{
return rj_load(MODE_ECB);
}
static PX_Cipher *
rj_128_cbc()
rj_128_cbc(void)
{
return rj_load(MODE_CBC);
}
static PX_Cipher *
bf_ecb_load()
bf_ecb_load(void)
{
return bf_load(MODE_ECB);
}
static PX_Cipher *
bf_cbc_load()
bf_cbc_load(void)
{
return bf_load(MODE_CBC);
}