2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

remove extraneous spaces before semicolons

This commit is contained in:
Mark Andrews
2003-10-03 06:12:34 +00:00
parent 8d42bb315c
commit a2b8bb8777
6 changed files with 16 additions and 16 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: random.c,v 1.19 2003/10/01 00:58:07 marka Exp $ */
/* $Id: random.c,v 1.20 2003/10/03 06:12:33 marka Exp $ */
#include <config.h>
@@ -82,7 +82,7 @@ isc_random_get(isc_uint32_t *val)
* rand()'s lower bits are not random.
* rand()'s upper bit is zero.
*/
*val = ((rand() >> 4) & 0xffff) | ((rand() << 12) & 0xffff0000) ;
*val = ((rand() >> 4) & 0xffff) | ((rand() << 12) & 0xffff0000);
#else
*val = arc4random();
#endif