mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 23:56:58 +03:00
Found type mismatch in random.c. Please apply this also.
Marko Kreen
This commit is contained in:
parent
cff23429d6
commit
7d94ac3b23
@ -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.
|
||||||
*
|
*
|
||||||
* $Id: random.c,v 1.1 2001/09/23 04:12:44 momjian Exp $
|
* $Id: random.c,v 1.2 2001/09/29 03:12:51 momjian Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ px_get_random_bytes(uint8 *dst, unsigned count)
|
|||||||
|
|
||||||
#ifdef RAND_SILLY
|
#ifdef RAND_SILLY
|
||||||
|
|
||||||
int px_get_random_bytes(char *dst, unsigned count)
|
int px_get_random_bytes(uint8 *dst, unsigned count)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user