mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 07:18:30 +00:00
Rerun clang-format on the repo (#1217)
🚨 clang-format changes output per version!
This is with version 19.0.0. The modifications seem to be fixing the old
version’s errors - mainly involving omitted whitespace around binary ops
and inserted whitespace between goto labels and colons (if followed by a
curly brace.)
Also fixes a few mistakes made by e.g. someone (ahem) forgetting to pass
his ctl/string.h modifications through it.
We should add this to .git-blame-ignore-revs once we have its final hash
on master.
This commit is contained in:
parent
8e37ee2598
commit
89fc95fefd
38 changed files with 139 additions and 122 deletions
|
@ -74,10 +74,10 @@ typedef uint32_t NtStatus;
|
|||
#define NtInformation(s) (NtSeverity(s) == 1)
|
||||
#define NtWarning(s) (NtSeverity(s) == 2)
|
||||
#define NtError(s) (NtSeverity(s) == 3)
|
||||
#define NtCode(s) ((NtStatus)(s)&0xffff)
|
||||
#define NtCode(s) ((NtStatus)(s) & 0xffff)
|
||||
#define NtSeverity(s) ((NtStatus)(s) >> 30)
|
||||
#define NtFacility(s) (((NtStatus)(s) >> 16) & 0xfff)
|
||||
#define NtFacilityCode(s) ((NtStatus)(s)&0x0FFFFFFF)
|
||||
#define NtFacilityCode(s) ((NtStatus)(s) & 0x0FFFFFFF)
|
||||
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
#endif /* COSMOPOLITAN_LIBC_NT_STATUS_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue