Appease GCC 4.2

It mistakenly believes the 'static' keyword must come first.  Fix PPC,
Sparc64, and maybe MIPS world.  Fallout from r331279.

Reported by:	tinderbox (results come slowly)
This commit is contained in:
Conrad Meyer 2018-03-21 04:44:19 +00:00
parent c37125d9e5
commit 855c2cbe07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331284

View File

@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$");
#include <zstd.h>
const static unsigned valid_flags[] = { 0, GRND_NONBLOCK, GRND_RANDOM,
static const unsigned valid_flags[] = { 0, GRND_NONBLOCK, GRND_RANDOM,
GRND_NONBLOCK | GRND_RANDOM };
ATF_TC_WITHOUT_HEAD(getrandom_randomness);