mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 16:20:42 +00:00
Update blocks_runtime.m
This commit is contained in:
parent
d0d7238172
commit
fd5744356f
1 changed files with 2 additions and 2 deletions
|
@ -207,7 +207,7 @@ struct StackBlockClass {
|
|||
void *
|
||||
_Block_copy(const void *src)
|
||||
{
|
||||
struct StackBlockClass *self = (struct StackBlockClass*)src;
|
||||
struct StackBlockClass *self = (struct StackBlockClass *)src;
|
||||
struct StackBlockClass *ret = self;
|
||||
extern void _NSConcreteStackBlock;
|
||||
|
||||
|
@ -232,7 +232,7 @@ _Block_copy(const void *src)
|
|||
void
|
||||
_Block_release(const void *src)
|
||||
{
|
||||
struct StackBlockClass *self = (struct StackBlockClass*)src;
|
||||
struct StackBlockClass *self = (struct StackBlockClass *)src;
|
||||
extern void _NSConcreteStackBlock;
|
||||
|
||||
if (self->isa == &_NSConcreteStackBlock
|
||||
|
|
Loading…
Reference in a new issue