Differences From Artifact [25b79fa395]:
- File src/serverutil.m — part of check-in [b5bfe2af86] at 2025-03-23 02:59:37 on branch trunk — Remove u{char,short,int} (user: js, size: 4073) [annotate] [blame] [check-ins using]
To Artifact [da87a5e2ce]:
- File
src/serverutil.m
— part of check-in
[75e920ae30]
at
2025-03-29 14:25:43
on branch trunk
— Switch from clang-format to manual formatting
clang-format does too many weird things. (user: js, size: 4076) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
142 143 144 145 146 147 148 | void fatal(OFConstantString *s, ...) { cleanupserver(); va_list args; va_start(args, s); | | | | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | void fatal(OFConstantString *s, ...) { cleanupserver(); va_list args; va_start(args, s); OFString *msg = [[OFString alloc] initWithFormat: s arguments: args]; va_end(args); [OFStdOut writeFormat: @"servererror: %@\n", msg]; exit(1); } void * alloc(int s) { |
︙ | ︙ |