* dtable.cc (cnew): Fix whitespace.
This commit is contained in:
parent
1df99a60b3
commit
c38da4ee1d
@ -1,3 +1,7 @@
|
|||||||
|
2011-07-01 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
|
* dtable.cc (cnew): Fix whitespace.
|
||||||
|
|
||||||
2011-07-01 Corinna Vinschen <corinna@vinschen.de>
|
2011-07-01 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* include/sys/param.h (NGROUPS): Redefine as NGROUPS_MAX.
|
* include/sys/param.h (NGROUPS): Redefine as NGROUPS_MAX.
|
||||||
|
@ -396,7 +396,7 @@ dtable::init_std_file_from_handle (int fd, HANDLE handle)
|
|||||||
#define cnew(name, ...) \
|
#define cnew(name, ...) \
|
||||||
({ \
|
({ \
|
||||||
void* ptr = (void*) ccalloc (HEAP_FHANDLER, 1, sizeof (name)); \
|
void* ptr = (void*) ccalloc (HEAP_FHANDLER, 1, sizeof (name)); \
|
||||||
ptr? new(ptr) name(__VA_ARGS__) : NULL; \
|
ptr ? new (ptr) name (__VA_ARGS__) : NULL; \
|
||||||
})
|
})
|
||||||
|
|
||||||
fhandler_base *
|
fhandler_base *
|
||||||
|
Loading…
Reference in New Issue
Block a user