Properly fix GCC build in r357867

Submitted by:	kib
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2020-02-14 09:25:29 +00:00
parent d8b7b73571
commit c27ac74f9c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357904

View file

@ -37,7 +37,7 @@
#include <stdlib.h>
#include <unistd.h>
#define RANDOM_MAX (((long)1<<31) - 1)
#define RANDOM_MAX ((1U<<31) - 1)
int main(int argc, char** argv){
useconds_t max_usecs, usecs;