Fix typo.

This commit is contained in:
Bruce Momjian 1998-06-08 19:15:05 +00:00
parent 1db770f8ce
commit 1572800b16
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.81 1998/06/08 04:27:59 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.82 1998/06/08 19:15:05 momjian Exp $
*
* NOTES
*
@ -1387,5 +1387,5 @@ PostmasterRandom(void)
initialized = true;
}
return ramdom() ^ random_seed;
return random() ^ random_seed;
}