Commit aacfeba6 authored by Tom Lane's avatar Tom Lane

Suppress compile warning.

parent e8a3e6b8
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * 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) ...@@ -814,7 +814,8 @@ px_get_pseudo_random_bytes(uint8 *dst, unsigned count)
} }
static time_t seed_time = 0; static time_t seed_time = 0;
static void system_reseed()
static void system_reseed(void)
{ {
uint8 buf[1024]; uint8 buf[1024];
int n; int n;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment