2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

Shut up MSVC++ compiler warning about loss of precision when assigning

8 bits masked out of a 32 bit int to individual bytes.
This commit is contained in:
David Lawrence
1999-09-23 17:54:57 +00:00
parent df1e2d496e
commit c910282c40

View File

@@ -378,10 +378,10 @@ isc_buffer_putuint32(isc_buffer_t *b, isc_uint32_t val)
cp = b->base;
cp += b->used;
b->used += 4;
cp[0] = (val & 0xff000000) >> 24;
cp[1] = (val & 0x00ff0000) >> 16;
cp[2] = (val & 0x0000ff00) >> 8;
cp[3] = (val & 0x000000ff);
cp[0] = (unsigned char)((val & 0xff000000) >> 24);
cp[1] = (unsigned char)((val & 0x00ff0000) >> 16);
cp[2] = (unsigned char)((val & 0x0000ff00) >> 8);
cp[3] = (unsigned char)(val & 0x000000ff);
}
isc_result_t