Skip to content

Commit c4ed51f

Browse files
committed
Fixed clang-format
1 parent 6a29777 commit c4ed51f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -476,40 +476,40 @@ struct __sanitizer_cmsghdr {
476476
int cmsg_level;
477477
int cmsg_type;
478478
};
479-
#elif SANITIZER_MUSL
479+
# elif SANITIZER_MUSL
480480
struct __sanitizer_msghdr {
481481
void *msg_name;
482482
unsigned msg_namelen;
483483
struct __sanitizer_iovec *msg_iov;
484-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
484+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
485485
int __pad1;
486-
# endif
486+
# endif
487487
int msg_iovlen;
488-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
488+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
489489
int __pad1;
490-
# endif
490+
# endif
491491
void *msg_control;
492-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
492+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
493493
int __pad2;
494-
# endif
494+
# endif
495495
unsigned msg_controllen;
496-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
496+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
497497
int __pad2;
498-
# endif
498+
# endif
499499
int msg_flags;
500500
};
501501
struct __sanitizer_cmsghdr {
502-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
502+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
503503
int __pad1;
504-
# endif
504+
# endif
505505
unsigned cmsg_len;
506-
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
506+
# if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
507507
int __pad1;
508-
# endif
508+
# endif
509509
int cmsg_level;
510510
int cmsg_type;
511511
};
512-
#else
512+
# else
513513
// In POSIX, int msg_iovlen; socklen_t msg_controllen; socklen_t cmsg_len; but
514514
// many implementations don't conform to the standard.
515515
struct __sanitizer_msghdr {
@@ -526,9 +526,9 @@ struct __sanitizer_cmsghdr {
526526
int cmsg_level;
527527
int cmsg_type;
528528
};
529-
#endif
529+
# endif
530530

531-
#if SANITIZER_LINUX
531+
# if SANITIZER_LINUX
532532
struct __sanitizer_mmsghdr {
533533
__sanitizer_msghdr msg_hdr;
534534
unsigned int msg_len;

0 commit comments

Comments
 (0)