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

Use clang-format-19 to update formatting

This is purely result of running:

    git-clang-format-19 --binary clang-format-19 origin/main
This commit is contained in:
Ondřej Surý
2024-08-15 09:36:53 +02:00
committed by Michal Nowak
parent ec62fc1399
commit 7b756350f5
6 changed files with 8 additions and 9 deletions

View File

@@ -89,8 +89,7 @@ struct xrdata {
#endif /* if DNS_RDATASET_FIXED */
};
#define peek_uint16(buffer) \
({ ((uint16_t) * (buffer) << 8) | *((buffer) + 1); })
#define peek_uint16(buffer) ({ ((uint16_t)*(buffer) << 8) | *((buffer) + 1); })
#define get_uint16(buffer) \
({ \
uint16_t __ret = peek_uint16(buffer); \