* pex-unix.c (writeerr): Cast write result to void.
This commit is contained in:
parent
c3c6b70e63
commit
0bbe7a79f5
@ -1,5 +1,7 @@
|
|||||||
2007-01-12 Ben Elliston <bje@au.ibm.com>
|
2007-01-12 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
|
* pex-unix.c (writeerr): Cast write result to void.
|
||||||
|
|
||||||
* choose-temp.c (choose_temp_base): Check the result of the call
|
* choose-temp.c (choose_temp_base): Check the result of the call
|
||||||
to mktemp rather than testing the length of the modified string.
|
to mktemp rather than testing the length of the modified string.
|
||||||
|
|
||||||
|
@ -339,7 +339,7 @@ static void
|
|||||||
pex_child_error (struct pex_obj *obj, const char *executable,
|
pex_child_error (struct pex_obj *obj, const char *executable,
|
||||||
const char *errmsg, int err)
|
const char *errmsg, int err)
|
||||||
{
|
{
|
||||||
#define writeerr(s) write (STDERR_FILE_NO, s, strlen (s))
|
#define writeerr(s) (void) write (STDERR_FILE_NO, s, strlen (s))
|
||||||
writeerr (obj->pname);
|
writeerr (obj->pname);
|
||||||
writeerr (": error trying to exec '");
|
writeerr (": error trying to exec '");
|
||||||
writeerr (executable);
|
writeerr (executable);
|
||||||
|
Loading…
Reference in New Issue
Block a user