Files @ 0021301bc812
Branch filter:

Location: CSY/reowolf/examples/check.c - annotation

Christopher Esterhuyse
tearing down correctly now
1
2
3
4
5
6
7
void check(const char* phase, int err) {
	if (err) {
		printf("ERR %d in phase `%s`. Err was `%s`\nEXITING!\n",
			err, phase, connector_error_peek());
		exit(1);
	}
}