Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
1a8e58a3
Commit
1a8e58a3
authored
Jan 12, 2007
by
Ben Elliston
Committed by
Ben Elliston
Jan 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pex-unix.c (writeerr): Cast write result to void.
From-SVN: r120702
parent
179cd3d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
libiberty/ChangeLog
+2
-0
libiberty/pex-unix.c
+1
-1
No files found.
libiberty/ChangeLog
View file @
1a8e58a3
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.
...
...
libiberty/pex-unix.c
View file @
1a8e58a3
...
@@ -339,7 +339,7 @@ static void
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment