* cygerrno.h (__set_errno): Remove useless parentheses.
This commit is contained in:
parent
5d4750a996
commit
56f235345d
|
@ -1,3 +1,7 @@
|
||||||
|
2005-05-04 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygerrno.h (__set_errno): Remove useless parentheses.
|
||||||
|
|
||||||
2005-05-04 Corinna Vinschen <corinna@vinschen.de>
|
2005-05-04 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygerrno.h (__set_errno): Define as inline function here.
|
* cygerrno.h (__set_errno): Define as inline function here.
|
||||||
|
|
|
@ -27,7 +27,7 @@ inline int
|
||||||
__set_errno (const char *fn, int ln, int val)
|
__set_errno (const char *fn, int ln, int val)
|
||||||
{
|
{
|
||||||
debug_printf ("%s:%d val %d", fn, ln, val);
|
debug_printf ("%s:%d val %d", fn, ln, val);
|
||||||
return errno = _impure_ptr->_errno = (val);
|
return errno = _impure_ptr->_errno = val;
|
||||||
}
|
}
|
||||||
#define set_errno(val) __set_errno (__PRETTY_FUNCTION__, __LINE__, (val))
|
#define set_errno(val) __set_errno (__PRETTY_FUNCTION__, __LINE__, (val))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue