diff --git a/lib/isc/random.c b/lib/isc/random.c index b79b6891ab..6406114a0f 100644 --- a/lib/isc/random.c +++ b/lib/isc/random.c @@ -144,6 +144,7 @@ isc_random_get(uint32_t *val) { *val = ((rand() >> 4) & 0x000007ff) | ((rand() << 7) & 0x003ff800) | ((rand() << 18) & 0xffc00000); #else +/* cppcheck-suppress preprocessorErrorDirective */ #error RAND_MAX is too small #endif #else