ObjFW  Check-in [c12d5c986f]

Overview
Comment:OFBlock: Fix a type mismatch
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c12d5c986f25d8696dd84243e63552abc682c2cd0f140da2e66fe0c52c94038a
User & Date: js on 2017-06-07 20:22:21
Other Links: manifest | tags
Context
2017-06-07
21:38
runtime: Move all globals into a single struct check-in: 79011c5f56 user: js tags: trunk
20:22
OFBlock: Fix a type mismatch check-in: c12d5c986f user: js tags: trunk
2017-06-05
21:57
OFFileManager: Don't use stat() on MorphOS check-in: 289f2b1272 user: js tags: trunk
Changes

Modified src/OFBlock.m from [48fc4cece6] to [d386c614c9].

97
98
99
100
101
102
103
104
105
106
107
108
109
110
111

struct objc_abi_class _NSConcreteMallocBlock = {
	&_NSConcreteMallocBlock_metaclass, "OFBlock", "OFMallocBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct {
	unsigned int unknown;
	struct objc_abi_selector *sel_refs;
	uint16_t cls_def_cnt, cat_def_cnt;
	void *defs[4];
} symtab = {
	0, NULL, 3, 0,
	{
		&_NSConcreteStackBlock, &_NSConcreteGlobalBlock,







|







97
98
99
100
101
102
103
104
105
106
107
108
109
110
111

struct objc_abi_class _NSConcreteMallocBlock = {
	&_NSConcreteMallocBlock_metaclass, "OFBlock", "OFMallocBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct {
	unsigned long unknown;
	struct objc_abi_selector *sel_refs;
	uint16_t cls_def_cnt, cat_def_cnt;
	void *defs[4];
} symtab = {
	0, NULL, 3, 0,
	{
		&_NSConcreteStackBlock, &_NSConcreteGlobalBlock,