2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 22:45:39 +00:00

fix whitespaces

This commit is contained in:
Ondřej Surý
2018-06-06 14:37:22 +02:00
parent b4aa7a9d7e
commit 013a49474c
2 changed files with 6 additions and 6 deletions

View File

@@ -104,13 +104,13 @@ isc_random_buf(void *buf, size_t buflen) {
for (i = 0; i + sizeof(r) <= buflen; i += sizeof(r)) {
r = next();
memmove((uint8_t *)buf + i, &r, sizeof(r)); /* Buffers cannot
* really overlap
* here */
* really overlap
* here */
}
r = next();
memmove((uint8_t *)buf + i, &r, buflen % sizeof(r)); /* Buffer cannot
* really overlap
* here */
* really overlap
* here */
return;
}