Cube  Diff

Differences From Artifact [25b79fa395]:

To Artifact [da87a5e2ce]:


142
143
144
145
146
147
148
149

150
151
152

153
154
155
156
157
158
159
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];
	OFString *msg = [[OFString alloc] initWithFormat: s arguments: args];
	va_end(args);

	[OFStdOut writeFormat:@"servererror: %@\n", msg];
	[OFStdOut writeFormat: @"servererror: %@\n", msg];

	exit(1);
}

void *
alloc(int s)
{