diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-10 17:22:54 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-10 17:22:54 +0000 |
commit | aacfeba61b02bf92cb01c69001e3932d629712d3 (patch) | |
tree | 9f47a6fe5f2cc8125089a72045bed7aec8186196 | |
parent | e8a3e6b8a05ae0c7ad0aefaaa0767f7a67d1fae2 (diff) | |
download | postgresql-aacfeba61b02bf92cb01c69001e3932d629712d3.tar.gz postgresql-aacfeba61b02bf92cb01c69001e3932d629712d3.zip |
Suppress compile warning.
-rw-r--r-- | contrib/pgcrypto/internal.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/pgcrypto/internal.c b/contrib/pgcrypto/internal.c index cee1c687624..7bbd06a606c 100644 --- a/contrib/pgcrypto/internal.c +++ b/contrib/pgcrypto/internal.c @@ -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.18 2005/07/10 03:55:28 momjian Exp $ + * $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.19 2005/07/10 17:22:54 tgl Exp $ */ @@ -814,7 +814,8 @@ px_get_pseudo_random_bytes(uint8 *dst, unsigned count) } static time_t seed_time = 0; -static void system_reseed() + +static void system_reseed(void) { uint8 buf[1024]; int n; |